php 中使用 try 时不定义变量不报错的缘由在使用 php 中的 try 语句时,即使不事先定义变量,也能成功执行而不报错。例如以下代码:try { $result = '正确';} catch (Exception $e) {...