首页 > 后端开发 > 正文

php匹配字符串函数 php中的preg_match()函数

2024-08-08 07:05:59 | 我爱编程网

我爱编程网小编给大家带来了php匹配字符串函数 php中的preg_match()函数相关文章,一起来看一下吧。

本文目录一览:

php匹配字符串函数 php中的preg_match()函数

php中的preg_match()函数

preg_match()函数用于 正则表达式 知识匹配,如果成功则返回1,否则返回0。

Preg_match()在成功匹配之后停止匹配,如果要实现所有结果的内部匹配,则使用preg_match_all()函数。

php函数取得 字符串 长度: 我爱编程网

1.首先,创建一个新的PHP文件并将其命名为test.php。

2.在test.php文件中,定义两个字符串,一个是纯英文字符串,另一个是中英文混合字符串。

3.使用strlen()方法来计算长度,从程序执行结果来看,strlen()方法计算的字符串长度$Str1是正确的,第二个字符串$Str2是错误的。

4.创建一个新的utf8_strlen()函数,并将其参数定义为$string,默认为null。

5.在utf8_strlen()函数中,使用preg_match_all()方法通过正则表达式分割字符串,并将其保存在$match变量中。最后,计算从count()方法获得的数组元素的数量,并返回结果。

6.使用utf8_strlen()分别计算$Str1和$Str2字符串的长度,并使用echo将结果输出到页面。

7.在浏览器中运行test.php文件并查看程序执行的结果。从这两个结果可以看出,统计字符串长度已经成功实现。

php匹配字符串函数 php中的preg_match()函数

PHP怎样在二维数组查找匹配字符串

array_walk_recursive

方法一

array_walk_recursive($array,function($value,$key){

if($value==$string){

//相同
}
},$string);

方法二

foreach($array as $key=>$value){

if(in_array($string,$value)){

//相同
}

}

php匹配字符串函数 php中的preg_match()函数

preg_match在文本中搜索“php”

我爱编程网(https://www.52biancheng.com)小编还为大家带来preg_match在文本中搜索“php”的相关内容。

在PHP代码中,preg_match函数被用于在文本字符串中进行模式匹配。这里,它以斜杠包围的正则表达式"php/i"作为模式,其中"i"表示不区分大小写。

下面的示例展示了如何使用preg_match:

php
<?php
if (preg_match ("/php/i", "PHP is the web scripting language of choice.")) {
echo "
A match was found: 'php' was found in the text.
";
} else {
echo "
No match found: 'php' was not found in the text.
";
}
?>

另一方面,另一个PHP片段展示了Smarty类的使用,它主要用于模板引擎,与正则表达式搜索无关:

php
<?php
$smarty = new Smarty;
$smarty->assign("Name", "Fred Irving Johnathan Bradley Peppergill");
$smarty->assign("FirstName", array("John", "Mary", "James", "Henry"));
$smarty->assign("LastName", array("Doe", "Smith", "Johnson", "Case"));
$smarty->assign("Class", ...);
$smarty->assign("contacts", ...);
$smarty->assign("option_values", ...);
$smarty->assign("option_output", ...);
$smarty->assign("option_selected", "NE");
$smarty->display('index.tpl');
?>

这部分代码主要用于设置模板变量和输出数据,而不是在文本中搜索特定模式。

以上就是我爱编程网小编给大家带来的php匹配字符串函数 php中的preg_match()函数,希望能对大家有所帮助。更多相关文章关注我爱编程网:www.52biancheng.com

免责声明:文章内容来自网络,如有侵权请及时联系删除。
与“php匹配字符串函数 php中的preg_match()函数”相关推荐