0

我在 /app/view/layouts 中有以下布局(称为:“MyView.ctp”)

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title><?php echo $title_for_layout; ?></title>
        <!-- add favicon here-->
        <!-- js -->
        <?php echo $scripts_for_layout; ?>    
     </head>

    <body> 

    </body>
</html>

我在 /app/view 中有以下视图(称为 MyView.ctp)

<?php $html->css('fup-prototype','stylesheet', array('media”=>”all' ), false); ?>

app/webroot/css/ 中的以下css文件(称为 fup-prototype.css)

但是我收到了这个错误: 图像1

我在这里做错了什么?

4

1 回答 1

4

代替

array('media”=>”all' )

你很可能是说

array('media'=>'all' )
于 2012-08-04T19:39:32.217 回答