cakephp 中的元素中包含的 html 助手不能与 wamp 一起使用
Posted
技术标签:
【中文标题】cakephp 中的元素中包含的 html 助手不能与 wamp 一起使用【英文标题】:html helper included in elements in cakephp not working with wamp 【发布时间】:2014-01-03 02:20:21 【问题描述】:我正在使用 cakephp。我为网站设计了一个主页。这里我包含了元素,即 header.ctp、main.ctp 和 footer.ctp。我在 default.ctp 中使用 $this->element 调用它们. 在每个元素中我都使用了 html helper likeHtml->image('Logo.png');?> 现在,当我在 xxamp 上部署它时,它按预期工作 但是当我将其迁移到 wamp 时,它没有给出输出 而不是为
显示图像 <? echo $this->Html->image('Logo.png');?>
显示文字
Html->image('Logo.png');?>
我正在使用 cakephp 2.4.2。 xamp php 5.3.5
wamp: php 5.3.0
【问题讨论】:
你太棒了。感谢您提出我无法通过 Google 搜索的问题! 【参考方案1】:我得到它的工作... 我刚换了
<? ........ ?> with
<?php ...... ?>
在声明 php 代码时。 :)
【讨论】:
永远不要使用短标签。以上是关于cakephp 中的元素中包含的 html 助手不能与 wamp 一起使用的主要内容,如果未能解决你的问题,请参考以下文章