Boş değeri varsayılan nesne oluşturma

0 Cevap php

Ben çalışan, çalışma zamanında nesne değişkeni ayarlamak gerekir, ancak PHP beni döndürür:

Boş değeri varsayılan nesne oluşturma (/ 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;
}

ps. $ nesne bir işaretçi çünkü ben, $object = new stdClass kullanamazsınız.

0 Cevap