我需要在运行时设置对象变量,它正在工作,但 PHP 返回我:
从空值创建默认对象 (/sct/fw FW_List.class.php:1142)
function initTemplates(&$object, $tpl_names)
{
global $FW_LIST_CONFIGURATION;
$is_custom = array();
foreach($tpl_names as $tpl_type) {
$object->$tpl_type = new template();
$object->$tpl_type->setTemplateText($FW_LIST_CONFIGURATION["templates"][$tpl_type]);
// place the defauts template values
$object->$tpl_type->setPlace( $FW_LIST_CONFIGURATION["css"][$tpl_type]);
}
return $is_custom;
}
附言。我不能使用$object = new stdClass
,因为 $object 是一个指针。