0
点赞
收藏
分享

微信扫一扫

关于udp能跨局域网传输的问题

大柚子top 2024-03-19 阅读 7
php

Throwable work on PHP 7.x. 

Exception work on PHP 5.x. 

 参考链接: https://www.php.net/manual/en/language.errors.php7.php

​<?php

try {

  // Code that may throw an Exception or Error.

} catch (Throwable $t) {

  // Executed only in PHP 7, will not match in PHP 5

} catch (Exception $e) {

  // Executed only in PHP 5, will not be reached in PHP 7

}
举报

相关推荐

关于局域网共享问题

局域网

局域网的学习

无线局域网

虚拟局域网

Vlan虚拟局域网

Nginx 局域网共享

0 条评论