当前位置: 编程技术>php
php中htmlspecialchars与htmlentiti用法
来源: 互联网 发布时间:2014-08-30
本文导语: 在php编程中,使用file_get_contents拿到网页之后,如果直接使用echo 输出,浏览器输出会自动解析,输出仍然为网页。 使用htmlspecialchars转换得到的content,然后获得所有的链接。截取。 截取时候会出现问题, 截取使用htmlspecialchars...
在php编程中,使用file_get_contents拿到网页之后,如果直接使用echo 输出,浏览器输出会自动解析,输出仍然为网页。
使用htmlspecialchars转换得到的content,然后获得所有的链接。截取。
截取时候会出现问题,
截取使用htmlspecialchars转换过的内容,截取方式:
代码示例:
$word = substr($str,strpos($str,'>',5)+4,strpos($str,"<",10)-strpos($str,'>',5)-4);
function captureKeyArray($url)
{
$content=file_get_contents($url);
$pattern="/
function captureKeyArray($url)
{
$content=file_get_contents($url);
$pattern="/