<?php
$this->widget('bootstrap.widgets.TbAlert', array(
'block'=>true, // display a larger alert block?
'fade'=>true, // use transitions?
'closeText'=>'×', // close link text - if set to false, no close link is displayed
'alerts'=>array( // configurations per alert type
'success'=>array(
'block'=>true,
'fade'=>true,
'closeText'=>'×',
), // success, info, warning, error or danger
),
),
);
?>
第14行的/dev/shm/untitled.php中的PHP Parse错误:语法错误,意外')'
我真的找不到错误并且看了100次。需要实现这个小部件, 谢谢!
有4个左括号和4个结束。逗号很好,所以......?
答案 0 :(得分:1)
<?php
$this->widget('bootstrap.widgets.TbAlert', array(
'block'=>true,
'fade'=>true,
'closeText'=>'×',
'alerts'=>array(
'success'=>array(
'block'=>true,
'fade'=>true,
'closeText'=>'×'
),
),
), // you have comma here - it's mistake
);
?>
答案 1 :(得分:0)
参见说明
Requires
php: >=5.4.0