php-preg_match获取文本
作者:互联网
我有test.php,在test1.php上,我正在运行此php代码
<?php
$Text=file_get_contents("http://inviatapenet.gethost.ro/sop/test.php");
preg_match_all('~fid="(.*?)"~si',$Text,$Match);
$fid=$Match[1][1];
echo $fid;
?>
我想要做的是从test.php获取文本
从这个fid =’gty5etrf’JavaScript中我只需要fid的内容
<script type='text/javascript'>fid='gty5etrf'; v_width=620; v_height=490;</script><script type='text/javascript' src='http://www.reyhq.com/player.js'></script>
在test1.php中,我只需要显示内容
gty5etrf
我该怎么办?
解决方法:
preg_match_all('/fid=\'([^\']+)\'/',$Text,$Match);
您的正则表达式有误.
首先,您要查找fid =“ …”而不是fid =’…’.
其次,使用.*,正则表达式将匹配除fid属性末尾以外的任何字符.
这是完整的代码:
preg_match_all('/fid=\'([^\']+)\'/',$Text,$Match);
$fid=$Match[1][0];
echo $fid;
标签:preg-match-all,php,regex 来源: https://codeday.me/bug/20191031/1972306.html