Home >Backend Development >PHP Tutorial >PHP怎么在给定字符串中查找出特定两个字符之间的内容

PHP怎么在给定字符串中查找出特定两个字符之间的内容

WBOY
WBOYOriginal
2016-06-13 10:51:461208browse

PHP如何在给定字符串中查找出特定两个字符之间的内容?

查询的 IP:219.245.125.100 来自:陕西省西安市 西安电子科技大学

GeoIP: Xidian, China

您今日已查询 14 次,最多可查 100 次。



如上,想获取“来自:”和"

GeoIP:"之间的“陕西省西安市 西安电子科技大学”,该如何处理?

------解决方案--------------------

PHP code
$s=<p>查询的 IP:<code>219.245.125.100</code> 来自:陕西省西安市 西安电子科技大学</p><p>GeoIP: Xidian, China</p><p></p><p>您今日已查询 14 次,最多可查 100 次。</p>div;preg_match('/来自:(.*?)<p>/',$s,$m);echo $m[1];<br><font color="#e78608">------解决方案--------------------</font><br>将给定字符串保存在$current0中<br><br>$current='preg_match('/来自:(.*?)</p><p>/',$current,$result);<br>echo $result[1];</p><div class="clear">
                 
              
              
        
            </div>
Statement:
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