Summary of practical regular expressions in PHP

墨辰丷
Release: 2023-03-27 15:38:02
Original
1335 people have browsed it

这篇文章主要介绍了PHP经典实用正则表达式,结合具体实例总结分析了php基于正则实现验证、查找、匹配等相关操作技巧,需要的朋友可以参考下

对于开发人员来说,正则表达式是一个非常有用的功能,它提供了 查找,匹配,替换 句子,单词,或者其他格式的字符串。这里介绍了几个超实用的php正则表达式,需要的朋友可以参考下。

1. 验证域名检验一个字符串是否是个有效域名

<?php
$url = "https://www.baidu.com";
if (preg_match(&#39;/^(http|https|ftp):\/\/([A-Z0-9][A-Z0-9_-]*(?:.[A-Z0-9][A-Z0-9_-]*)+):?(d+)?\/?/i&#39;, $url)) {
 echo "Your url is ok.";
} else {
 echo "Wrong url.";
}
Copy after login

2. 从一个字符串中 突出某个单词

这是一个非常有用的在一个字符串中匹配出某个单词 并且突出它,非常有效的搜索结果

<?php
$text = "Sample sentence from KomunitasWeb, regex has become popular in web programming. Now we learn regex. According to wikipedia, Regular expressions (abbreviated as regex or
regexp, with plural forms regexes, regexps, or regexen) are written in a formal language that can be interpreted by a regular expression processor";
$text = preg_replace("/(regex)/i", &#39;<span style="background:#5fc9f6">1</span>&#39;, $text);
echo $text;
Copy after login

function get_the_title(){
  return &#39;Save the search.php file and open style.css. Append the following line to it: &#39;;
}
$s = &#39;and php&#39;;
$title  = get_the_title();
$keys= explode(" ",$s);
$title  = preg_replace(&#39;/(&#39;.implode(&#39;|&#39;, $keys) .&#39;)/iu&#39;,
&#39;<strong>\0</strong>&#39;,
$title);
echo $title;
Copy after login

3. 从HTML文档中获得全部图片

如果你曾经希望去获得某个网页上的全部图片,这段代码就是你需要的,你可以轻松的建立一个图片下载机器人

<?php
$images = array();
$data = file_get_contents(&#39;https://www.baidu.com&#39;);
preg_match_all(&#39;/(img|src)=("|\&#39;)[^"\&#39;>]+/i&#39;, $data, $media);
unset($data);
$data=preg_replace(&#39;/(img|src)("|\&#39;|="|=\&#39;)(.*)/i&#39;,"$3",$media[0]);
foreach($data as $url)
{
 $info = pathinfo($url);
 if (isset($info[&#39;extension&#39;]))
 {
  if (($info[&#39;extension&#39;] == &#39;jpg&#39;) ||
  ($info[&#39;extension&#39;] == &#39;jpeg&#39;) ||
  ($info[&#39;extension&#39;] == &#39;gif&#39;) ||
  ($info[&#39;extension&#39;] == &#39;png&#39;))
  array_push($images, $url);
 }
}
var_dump($images);
Copy after login

4. 匹配一个XML或者HTML标签

这个简单的函数有两个参数:第一个是你要匹配的标签,第二个是包含XML或HTML的变量,再强调下,这个真的很强大

<?php
function get_tag( $tag, $xml ) {
  $tag = preg_quote($tag);
  output($tag);
  preg_match_all(&#39;/<&#39;.$tag.&#39;[^>]*>(.*?)<\/&#39;.$tag.&#39;>./&#39;,
    $xml,
    $matches,
    PREG_PATTERN_ORDER
  );
  return $matches[1];
}
$xml = &#39;<span>bb<a>bbb</a><a>ccc</a></span><span>bb<a>aa</a><p><a>ddd</a></p></span>&#39;;
$tag = &#39;a&#39;;
$return = get_tag($tag, $xml);
var_dump($return);
/*
array(2) {
 [0]=>
 array(3) {
  [0]=>
  string(11) "bbb<"
  [1]=>
  string(10) "aa<"
  [2]=>
  string(11) "ddd<"
 }
 [1]=>
 array(3) {
  [0]=>
  string(3) "bbb"
  [1]=>
  string(2) "aa"
  [2]=>
  string(3) "ddd"
 }
}
array(3) {
 [0]=>
 string(3) "bbb"
 [1]=>
 string(2) "aa"
 [2]=>
 string(3) "ddd"
}
*/
Copy after login

以上就是本文的全部内容,希望对大家的学习有所帮助。


相关推荐:

PHP基础教程(php入门基础教程)一些code代码_php基础

php面向对象编程self和static的区别_php技巧

PHP循环函数使用介绍之PHP基础入门教程_php基础

PHP If Else(elsefi) 语句_php基础

The above is the detailed content of Summary of practical regular expressions in PHP. For more information, please follow other related articles on the PHP Chinese website!

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!