Rumah >pembangunan bahagian belakang >tutorial php >PHP补基础
近期在看YII
public $template='{view} {update} {delete}';
foreach(array('view','update','delete') as $id) { $button=array( 'label'=>$this->{$id.'ButtonLabel'}, 'url'=>$this->{$id.'ButtonUrl'}, 'imageUrl'=>$this->{$id.'ButtonImageUrl'}, 'options'=>$this->{$id.'ButtonOptions'}, ); if(isset($this->buttons[$id])) $this->buttons[$id]=array_merge($button,$this->buttons[$id]); else $this->buttons[$id]=$button; }
public $template='{view} {update} ';
不久可以单独输出view和update了么?
<?php $template='{view} {update} {delete}'; echo $template; ?>
<?php $template='{view} {update} {delete}'; echo $template; ?>
这个我也知道的,我想知道如何单独输出view,update啊