PHP 捕获错误
参考:http://php.net/manual/zh/language.errors.php7.php
第一种:catch (Error $e)捕获错误
<?php
try {
non_exists_func();
}catch(Error $e) {
print_r($e->getMessage());
echo "\n----catch----\n";
}
参考:http://php.net/manual/zh/language.errors.php7.php
第一种:catch (Error $e)捕获错误
<?php
try {
non_exists_func();
}catch(Error $e) {
print_r($e->getMessage());
echo "\n----catch----\n";
}
2017-12-17
最新回答 / weixin_慕工程1563154
https://vk.com/album712782082_283432785https://vk.com/album712782483_285962225https://vk.com/album712781332_283432793https://vk.com/album712772904_281930485https://vk.com/album712774205_283336424https://vk.com/album712534118_283386950https://vk.com/album7...
2017-07-30