zend framework 模板语法问题
<?=$this->url(array('model'=>'bug','controller'=>'index','action'=>'index','search'=>'trending'),'bug',true)?>
在本地可以解释,但放到服务器上就会原样输出
要改成
<?php echo $this->url(array('model'=>'bug','controller'=>'index','action'=>'index','search'=>'trending'),'bug',true)?>
才会解释。
为什么呢
------解决方案--------------------
短标签没有开启
short_open_tag