PHP 在类中无法使用 try{...}catch{...}

2017-07-05 11:51:23 +08:00
 hoythan
try {
	throw new \Exception('gateway.empty-gateway', 404);
} catch (Exception $e){
	print_r($e);
}

如上面的代码,如果我直接使用的话,是可以 print_r($e);出内容来的 但是如果我放到自己定义的类中比如

namespace xxx
class test
{
	public function run ()
    {
        try {
            throw new \Exception('gateway.empty-gateway', 404);
        } catch (Exception $e){
            print_r($e);
        }
    }
}

这样就不行了,会直接打印出报错

Fatal error: Uncaught Exception: gateway.empty-gateway  ...
1965 次点击
所在节点    PHP
3 条回复
hoythan
2017-07-05 11:52:58 +08:00
已经解决,原来是习惯性的漏了\
```
namespace xxx
class test
{
public function run ()
{
try {
throw new \Exception('gateway.empty-gateway', 404);
} catch (Exception $e){
print_r($e);
}
}
}
```
改为
```
namespace xxx
class test
{
public function run ()
{
try {
throw new \Exception('gateway.empty-gateway', 404);
} catch (\Exception $e){
print_r($e);
}
}
}
```

```
...
} catch (\Exception $e){
...
```
添加一个 \
ljmready
2017-07-05 11:54:46 +08:00
命名空间中要加\
Mitt
2017-07-05 15:58:49 +08:00
是时候换个 IDE 了 比如 JetBrians 全家桶

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/373174

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX