我有这个简单的代码:
<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>
答案 0 :(得分:0)
<html>
<head>
<title>My Cake Blog Application</title>
<?php echo $html->css('styles'); ?>
</head>
<body>
<div id="container">
<div id="content">
<?php echo $content_for_layout; ?>
</div>
</div>
</body>
</html>
答案 1 :(得分:0)
使用已发现的完整标签或在php.ini中启用短标签:How to enable PHP short tags?