Informationen zur Verwendung des Zirkumflexzeichens „^'
Will
Will 2017-11-08 17:11:58
0
2
2454

<?php
header('Content-Type: text/html; charset=utf-8');
$pattern='/[^0-9A-Za-z_]/';
$string='! $@!#%$#^##';
if(preg_match($pattern, $string,$match)){
echo 'Übereinstimmung, das Ergebnis ist:';
var_dump($match);
}
else {
echo 'No match';
}
?>

Ausgabe: Übereinstimmung, das Ergebnis ist: array(1) { [0]=> string(1) "}

Ich verstehe nicht $ Es gibt viele Zeichenfolgen, die nicht im Bereich von [^0-9A-Za-z_] liegen. Warum wird nur ein „!“ ausgegeben?


Will
Will

Antworte allen(2)
寻觅 beyond

preg_match()只匹配一次,如果匹配到符合条件的内容就立即返回,不再继续匹配了,即使后面还有符合条件的。

寻觅 beyond

preg_match()只匹配一次,如果匹配到符合条件的内容就不再继续匹配,如果你要匹配所有符合条件的可以用preg_match_all($pattern,$string,$arr),$arr会保存匹配到的所有符合条件的内容

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!