Xinu

php file_get_contents 报错排查
使用file_get_contents获取http内容,返回false,链接没问题,排查file_get_cont...
扫描右侧二维码阅读全文
13
2018/06

php file_get_contents 报错排查

使用file_get_contents获取http内容,返回false,链接没问题,排查file_get_contents错误

<?php
set_error_handler(
    create_function(
        '$severity, $message, $file, $line',
        'throw new ErrorException($message, $severity, $severity, $file, $line);'
    )
);

try {
    file_get_contents('https://www.google.com');
}
catch (Exception $e) {
    echo $e->getMessage();
}

restore_error_handler();
Last modification:June 13th, 2018 at 11:15 am

Leave a Comment