我在php中从头开始创建了少量的库/类。我来自codeigniter背景,我正在尝试创建一些具有类似功能的库。我一直在讨论有关对象的问题。
是以某种方式创建超级对象$this
的最佳方法吗?我的主要问题是我创建了一个视图对象,并运行了一个名为load
的函数,如下所示:
class View {
public function __construct() {
}
public function load($file = NULL, $data = array()) {
if($file) {
$file .= '.php';
if(file_exists($file)) {
// Extract variables BEFORE including the file
extract($data);
include $file;
return TRUE;
} else {
echo 'View not found';
return FALSE;
}
} else {
return FALSE;
}
}
}
然后在我的php文件中,我在顶部include 'libraries.php';
看起来像:
include 'database.php';
include 'view.php';
include 'input.php';
include 'form.php';
$config = array(
'host' => 'localhost',
'username' => 'username',
'password' => 'password',
'database' => 'database'
);
$database = new Database($config);
$view = new View();
$input = new Input();
$form = new Form();
从我包含库的文件中,我可以编写类似$form->value('name');
的内容而不会出错。但是,如果我做这样的事情:
$view->load('folder/index', array('var_name' => 'var_value'));
然后从folder/index.php
文件我可以访问$var_name
就好了,但不是$form->value('name');
。我收到Call to a member function value() on a non-object in ...
我的问题是如何以可重用的方式组织我的库和类。我不想使用前端加载器(一个index.php
文件,一切都先运行)。这可能是我编写课程的方式的一个问题,但我认为关于事物的位置等问题是一个更大的问题。
答案 0 :(得分:1)
将库/类文件放在公共目录中。类似的东西:
www
|_includes
| |_classes
| | |_view.php
| |_config
| |_database.php
|_other_folder
|_index.php
然后,您可以将.htaccess文件中的公共包含路径设置为此“包含”目录:
php_value include_path .:/path/to/www/includes
然后other_folder / index.php文件只需要:
require_once('config/database.php');
require_once('classes/view.php');