0
<?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
      ),
    ),
  );
?>

PHP 解析エラー: 構文エラー、予期しない ')' が /dev/shm/untitled.php の 14 行目にある

私は本当にエラーを見つけることができず、100回のように見ました。このウィジェットを実装する必要があります、ありがとう!

4 つの開き括弧と 4 つの閉じ括弧があります。カンマは大丈夫なので... ?

4

2 に答える 2

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
  );
?>
于 2013-04-29T12:42:05.343 に答える