我有兴趣在errorXXX.ctp视图显示时显示有关错误的信息。
我意识到默认使用$ url变量,但是我尝试使用$ code但是没有工作:
<p class="error">
<strong><?php echo __d('cake', 'Error ' . $code); ?>: </strong>
<?php printf(
__d('cake', 'The requested address %s was not found on this server.'),
"<strong>'{$url}'</strong>");
?>
</p>
我想接受像$ code,$ description,$ url,...
这样的变量有人知道我该如何解决它?