Yii Widget,意外),错误在哪里?

时间:2013-04-29 12:36:18

标签: twitter-bootstrap yii widget

<?php 
  $this->widget('bootstrap.widgets.TbAlert', array(
      'block'=>true, // display a larger alert block?
      'fade'=>true, // use transitions?
      'closeText'=>'&times;', // 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'=>'&times;',
        ), // success, info, warning, error or danger
      ),
    ),
  );
?>
第14行的/dev/shm/untitled.php中的

PHP Parse错误:语法错误,意外')'

我真的找不到错误并且看了100次。需要实现这个小部件,  谢谢!

有4个左括号和4个结束。逗号很好,所以......?

2 个答案:

答案 0 :(得分:1)

<?php 
  $this->widget('bootstrap.widgets.TbAlert', array(
      'block'=>true,
      'fade'=>true,
      'closeText'=>'&times;',
      'alerts'=>array( 
        'success'=>array(
          'block'=>true,
          'fade'=>true,
          'closeText'=>'&times;'
        ),
      ),
    ), // you have comma here - it's mistake
  );
?>

答案 1 :(得分:0)

参见说明

Requires

php: >=5.4.0