慕数据5594171
2018-05-31 11:22
<?php
$filename = 'test.txt';
try {
if (!file_exists($filename)) {
throw new Exception('文件不存在');
}
} catch(Exception $e) {
echo $e->getMessage();
printf $e;
// var_dump $e;
}
对象怎么输出。。
可能因为$e是一个对象,printf没法直接输出
显示的结果是PHP Parse error: syntax error, unexpected T_VARIABLE in index.php on line 9
PHP进阶篇
181835 学习 · 2577 问题
相似问题