我需要在Phalcon项目中开发自定义类/小部件
这样它就可以在程序的任何地方使用。
像yii小部件一样
请帮忙
答案 0 :(得分:1)
您需要注册另一个目录/命名空间,例如documentation says
<?php
// For Namespaces
$loader->registerNamespaces(
array(
//...
"MyLib" => "../app/library",
"MyPlugin" => "../app/plugins",
)
)->register();
// For directories
$loader->registerDirs(
array(
"../app/library/",
"../app/plugins/"
)
)->register();