0

我正在使用 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');
}
4

1 回答 1

1

尝试将您计划使用的逻辑与 try-catch 块中的输入一起使用。

就像是:

try {
  <..insert your logic here..>
} catch (Exception $e) {
  echo json_encode("error" => "Incorrect value entered");
}
于 2013-04-10T03:14:14.300 回答