php-代码点火器和配置文件中的自定义库?

我在代码点火器中有一个类似于类MyClass($options = array())的库

该文件是Myclass.php

我有一个看起来像的文件(config / Myclass.php)

$Myclass = array(
  'something' => 'value',
  'another'   => 'value'
);

我在初始化类时以为应该传递$Myclass数组,但显然不是?

我需要做什么来修复它?

解决方法:

啊,我找到了答案,

配置文件中的数组必须称为$config.

文件名也必须是库文件名的小写形式.

例如

库文件:Somelibrary.php
库内容:类Somelibrary($options = array()){…
配置文件:somelibrary.php
CONF目录:$config = array(‘something’=>’value’);

上一篇:php-CodeIgniter“ like()”函数,在搜索词中包含%通配符


下一篇:php-使用Codeigniter活动记录进行“距离内”查询