我的问题很简单:
- strpos 针的长度是否有限制?
- 如果是这样,有没有办法绕过它?
似乎我的长针不会触发位置,而我的短针会触发。
例子:
if (strpos($data, "You were not able to complete this job. Please try again at a later date. Do not hit your back button.") !== false)
//solves as false
if (strpos($data, "You were not able") !== false)
//returns the position