Html Link Cake Php中的双箭头错误

时间:2016-06-22 02:03:37

标签: php html cakephp hyperlink

我继续得到这个双箭头错误。 "错误:语法错误,意外' =>' (T_DOUBLE_ARROW)
文件:C:\ wamp \ www \ reminders_cakephp \ app \ View \ Reminders \ index.ctp
行:22"。我正在使用CakePhp框架,我非常确定使用双箭头是必要且正确的。但是,我不知道为什么我会收到此错误。 这是代码:

<?php 
                echo $this->Html->link(
                    $reminder['Reminder']['reminderDesc'],
                    $array(
                        'controller' => 'reminders',
                        'action' => 'view',
                         $reminder['Reminder']['reminderId']
                    )
                ); 
?>

谢谢。

0 个答案:

没有答案