I have php file index.php
In this file to use html code I am doing:
index.php
echo \' <
If you want to maintain the echo statement you can do either
echo ''; or echo ""; The first is better for performances and IMHO is more readable as well. 0 讨论(0) 查看其它6个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
or
echo "";
The first is better for performances and IMHO is more readable as well.