嗨,我在 php 中有以下代码:
class parser {
public function __construct($link)
{
$xml = @simplexml_load_file($link);
if (!$xml) {
echo 'Error while parsing the document';
exit;
}
}
$file = urldecode($_REQUEST['ftitle']);
$obj = new parser($file);
我得到了部分提到的错误if
。
但是如果我以简单的方式尝试它意味着我尝试使用无类方法,那么整段代码可以准确地工作而没有任何问题..请告诉我我的面向类的方法中是否有任何错误。提前谢谢:)