编程语言
首页 > 编程语言> > PHP try-catch是否支持短符号?

PHP try-catch是否支持短符号?

作者:互联网

这合法吗?不在我的工作电脑附近,因此无法测试

try
    someClass::someStaticFunction();
catch(Exception $e)
    $e->getMessage();

特别是缺少括号,类似于if-else语句

if(someBool)
    someClass::someStaticFunction();
else
    someClass::someOtherFunction(); 

干杯!

解决方法:

不,似乎不起作用.

在这里检查我的示例:http://codepad.org/BpSBiPDY

标签:notation,try-catch,php
来源: https://codeday.me/bug/20191101/1986601.html