我有一个弦
显示324个结果中的1-12
我想给这个字符串小费
324结果
要么
324
只要
注意,324是每次获取字符串时都会改变的图形。它可能是2位数字(34),3位或4位数字。
目前我仅在使用代码显示单词时成功
'str_replace('Showing', '', $s)'
这给出了
324个结果中的1-12
我如何使用str_replace函数来达到目的?还是我应该使用PHP的其他功能?
最佳答案
使用这个很容易
$exampleString = "showing 1 - 12 of 324 Results";
$arrayResult =explode(" ",$exampleString);
//output will be 324,according to the index the result will change
echo $arrayResult[5];