What does isU of preg_match in php mean?

怪我咯
Release: 2023-03-13 18:42:01
Original
1533 people have browsed it

i: means in-casesensitive, that is, case-insensitive
s: PCRE_DOTALL, means that the dot can match newline characters.
U: means PCRE_UNGREEDY, which means non-greedy, equivalent to .*? in perl/python language. During the matching process, for .* regular rules, they will be executed immediately as soon as there is a match, instead of waiting.* All characters are consumed and then rolled back one by one.

Example

preg_match compatibleRegular expressionIn the syntax, b represents the word boundary

So: The following should be OK? ? ?

$a="test,admin,abc";
$b="te";
$exist=preg_match("/b{$b}b/",$a);
if($exist)
{
echo "存在";
}else
{
echo "不存在";
}
Copy after login

Look at the relevant instructions

The code is as follows:

int preg_match ( string pattern, string subject [, array matches [, int flags]] );
Copy after login

preg_match() returns the number of times pattern is matched. Either 0 times (no match) or 1 time, since preg_match() will stop searching after the first match. preg_match_all(), on the contrary, will search until the end of subject. preg_match() returns false on error.

Example:

<?php
$a = "abcdefgabcdefaaag";
preg_match(&#39;|abc([a-z]+)g|isu&#39;,$a,$out1);
preg_match_all(&#39;|abc([s]+)g|isu&#39;,$a,$out2);
echo "<pre class="brush:php;toolbar:false">";
print_r($out1);
print_r($out2);
echo "
"; ?>
Copy after login

Writing:

The difference between using double quotes and single quotes

<?php
preg_match_all("/href="(.*)"/isu",$contents,$out);
preg_match_all(&#39;|href="(.*)"|isu&#39;,$contents,$out);
?>
Copy after login

The above is the detailed content of What does isU of preg_match in php mean?. 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!