PHP中关于双引号和单引号的问题
PHP code<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$this->view->baseUrl = $this->_request->getBaseUrl();echo '<a href="'.%24this->view->baseUrl.'/index/index/">返回</a>';echo "<a href="%24this-">view->baseUrl/index/index/>返回</a>";
以上两句echo语句有什么区别?第一句正确,第二句报错,报错内容是:Catchable fatal error: Object of class Zend_View could not be converted to string
这一句'.$this->view->baseUrl.' 加了单引号又加两个点,真是搞不懂,菜鸟,希望朋友们帮帮忙
------解决方案--------------------echo "
view->baseUrl}/index/index/>返回"; //这样写
'.$this->view->baseUrl.' //拼接字符串
------解决方案--------------------参看:
PHP code<?phpclass foo{ public $a; function __construct(){ $this->a='aaaaaaaaaaaaa'; }}$f=new foo();echo "BBB{$f->a}BBBBB";?><div class="clear">
</div>
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn