我正在使用 phpQuery 根据用户输入从页面中抓取一些信息,但是如果用户输入不存在的内容,我会尝试设置错误处理。
例如,用户输入了错误的产品编号,这可能会导致
Warning: file_get_contents([function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 404 Not Found in
我可以在 if 语句中使用什么来检查这样的实例中的 phpQuery 错误?
例如
if(...error...){
echo json_encode("error" => 'Incorrect value entered');
}