Update webpagetool.php

This commit is contained in:
Namhyeon Go 2018-04-13 16:06:35 +09:00 committed by GitHub
parent 8bd8710a26
commit 076d7a932f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,7 +167,7 @@ if(!function_exists("get_web_xml")) {
$response = get_web_page($url, $method, $data, $proxy, $ua, $ct_out, $t_out); $response = get_web_page($url, $method, $data, $proxy, $ua, $ct_out, $t_out);
if($response['size'] > 0) { if($response['size'] > 0) {
$result = simplexml_load_string($response['content']); $result = simplexml_load_string($response['content'], null, LIBXML_NOCDATA);
} }
} }