我正在尝试从数组中打印数据。该数组来自一个类。我越来越
array(0) { }
代替:
Array ( [0] => header_index.php [1] => footer.php )
代码是:
<?php
class TemplateModel {
public function getTemplate($template = "index"){
switch($template){
case "index":
$templateconfig = array("header_index.php","footer.php");
break;
}
return $templateconfig;
}
}
$temodel = new TemplateModel();
var_dump(get_object_vars($temodel));
$temodel -> getTemplate();
?>
我做错了什么?提前致谢