gpt4 book ai didi

php - cake php中文件的速记php标签问题

转载 作者:行者123 更新时间:2023-11-28 14:34:08 26 4
gpt4 key购买 nike

我有这个简单的代码:

<html>
<head>
<title>My Cake Blog Application</title>
<?=$html->css('styles');?>
</head>
<body>
<div id="container">
<div id="content">
<?=$content_for_layout;?>
</div>
</div>
</body>
</html>

我把它保存在 app/views/layouts将其命名为 default.ctp浏览器中的输出只显示 css('styles');

我在 app/webroot/css 中也有 styles.css

它在我的浏览器中不起作用然后我尝试了这个字符串作为开始和关闭:<?php echo();?>又不行了

<html>
<head>
<title>My Cake Blog Application</title>
<?php=$html->css('styles'); echo();?>
</head>
<body>
<div id="container">
<div id="content">
<?php=$content_for_layout; echo();?>
</div>
</div>
</body>
</html>

最佳答案

要么使用您已经发现的完整标签,要么在 php.ini 中启用短标签:How to enable PHP short tags?

关于php - cake php中文件的速记php标签问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6992044/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com