PHP中关于strstr函数查找 /n特殊字符?
程序员文章站
2022-03-31 14:57:12
...
我现在的代码 找不到 /n 字符
请问如何找到嗯?
扔上来的代码
$xml = simplexml_load_file("ZH-CNstrings.xml");
// echo $xml->getName() . "
";
$cou = 1;
foreach($xml->children() as $child)
{ echo $child->getName();
if($child->getName() == "string-array"){
foreach ($child as $key2 => $value2) {
echo "
";
}
}else{
if (strstr($child,"color")
or strstr($child,"%1")
or strstr($child,"%s")
or strstr($child,"\n")
) {
echo "有 特殊字符 ";
$cou++;
}
echo "
";
}
}
回复内容:
我现在的代码 找不到 /n 字符
请问如何找到嗯?
扔上来的代码
$xml = simplexml_load_file("ZH-CNstrings.xml");
// echo $xml->getName() . "
";
$cou = 1;
foreach($xml->children() as $child)
{ echo $child->getName();
if($child->getName() == "string-array"){
foreach ($child as $key2 => $value2) {
echo "
";
}
}else{
if (strstr($child,"color")
or strstr($child,"%1")
or strstr($child,"%s")
or strstr($child,"\n")
) {
echo "有 特殊字符 ";
$cou++;
}
echo "
";
}
}
试试 \n
推荐阅读
-
php中字符查找函数strpos、strrchr与strpbrk用法
-
php strstr查找字符串中是否包含某些字符的查找函数
-
php常用字符串查找函数strstr()与strpos()实例分析
-
php替换超长文本中的特殊字符的函数代码
-
php替换超长文本中的特殊字符的函数代码
-
PHP字符串函数系列之nl2br(),在字符串中的每个新行 (n) 之前
-
php中字符查找函数strpos、strrchr与strpbrk用法
-
PHP字符串函数系列之nl2br,在字符串中的每个新行 n 之前插入 HTML 换行符br
-
php strstr查找字符串中是否包含某些字符的查找函数
-
php替换超长文本中的特殊字符的函数代码_PHP