我想从中找到字符串
$str = "Hello this is dummy.test. in this string
any character, any special character can appear. it is not a fixed type
text and predefined. this string will not read manually check by the
Programmer.Sorry for the bad English.";
我的算法是固定的,因为某种问题。首先我想找到test关键字的位置,然后想从test回到dummy关键字来找到dummy关键字的位置。
我也搜索并使用了互联网,但在 PHP 中找不到任何可以以这种方式遍历的函数。
我也测试strrpos()
但不相关和必需的结果。请提供任何解决方案。
需要输出:dummy.test
算法:首先找到右(测试),然后从右到左(虚拟)。不是先右(测试),然后从开始到左(虚拟)。