php错误没有进入catch,php – 致命错误:没有try / catch块的未捕获异常

我正在尝试在表单字段为空时以及插入查询不成功时抛出异常.我已经看到有人在不使用try / catch块而不包含Exceptions类之前抛出异常.有谁知道我会怎么做?

当我没有填写所有字段时,这是我得到的错误:

致命错误:未捕获的异常“异常”,消息为“错误:以下字段为空 – 标题,电话号码,电子邮件,”在第94行的/vagrant/web/Assignment4/Person.php中例外:错误:以下字段为空 – 标题,电话号码,电子邮件,在第94行的/vagrant/web/Assignment4/Person.php中调用堆栈:0.0014 638168 1. {main}()/ vagrant/web/Assignment4/Form.php:0 0.0172 698568 2. Person-> insert()/ vagrant/web/Assignment4/Form.php:179

public function insert()

{

//Storing required $_POST array fields in variable for isset function

$errorArray = array();

$expectedValues = array(

"firstName" => "First Name",

"lastName" => "Last Name",

"title" => "Title",

"office" => "Office",

"phoneNumber" => "Phone Number",

"email" => "Email",

);

//Checking to see if all fields are filled in

foreach ($expectedValues as $field => $humanName) {

if (empty($_POST[$field])) {

$errorArray[] = $humanName . ", ";

}

}

if (count($errorArray) > 0) {

throw new Exception("Error: The following fields are empty- " .implode(' ', $errorArray));

}

else{

//If they are, insert them into the Perosn table

$insert = $this-> doQuery("INSERT INTO Person

VALUES(

'$_POST[firstName]',

'$_POST[lastName]',

'$_POST[title]',

'$_POST[office]',

'$_POST[phoneNumber]',

'$_POST[email]')");

//If insert query is successful, return true

if ($insert === true){

echo "

" . "Congragulations! You now work for Assignment 4 Incorporated" . "

";

return true;

}

//If not, throw an exception

/* else{

throw new Exception

("

" . "Error: Query was unsuccessful:" . " " . $this->error . "

");

}

try{

$insert == true;

}

catch (Exception $x){

echo $x->getMessage;

}

*/

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值