标签: php strpos
我使用strpos来查找某个表达式(在我的情况下是异常)是否包含在我从API收到的响应中。但是,有时似乎Exception消息通过此函数传递。这有可能吗?
$response = $this->curlRequest($uri, $authHeader); if (strpos(strtoupper($response), 'APIEXCEPTION') !== false) { return false; } return true;