Home > Backend Development > PHP Tutorial > 一个php资料里面是用一个<php ?>好 还是多个好

一个php资料里面是用一个<php ?>好 还是多个好

WBOY
Release: 2016-06-13 12:54:20
Original
1109 people have browsed it

一个php文件里面是用一个好 还是多个好?

<br />
<title><?php echo $s['title'];?></title><br />
<meta name="description" content="<?php echo $s['title'];?>" /><br />
Copy after login


<br />
<?php<br />
echo '<title>'.$s['title'].'</title>'<br />
echo '<meta name="description" content="'.$s['title'].'" />'<br />
?><br />
Copy after login


应该用哪个规范吗?一个页面里


------解决方案--------------------
混合编码没有规范
显然是第一种写法要清晰些

也比较符合 php 的原意:
PHP,即“PHP: Hypertext Preprocessor”,是一种被广泛使用的开放源代码多用途脚本语言,尤其适用于 web 开发并可以嵌入到 HTML 中去。
------解决方案--------------------
用第一种 : )
------解决方案--------------------
都可以吧。效率没什么区别。
自己哪个写着爽就写哪个
------解决方案--------------------
比较习惯用第一种,用第二种如果出错了不好找
------解决方案--------------------
第一种吧!!
------解决方案--------------------
个人也是很喜欢第一种
------解决方案--------------------
第一种吧,虽然都不太喜欢
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template