PHP 的 try.catch 会不会影响程序的执行效率
1个回答
2016-09-06 · 知道合伙人软件行家
关注
展开全部
try..catch是异常处理机制,为防止程序体系的崩溃提供了一个很好的防御手段。
异常处理代码对于程序的执行效率是有一定影响的,所以通常建议是不要滥用,更不应以异常处理来代替 if..else。
更进一步的影响程序执行效率的数据,在网上有提供了一个简单的测试代码:
作者:金正
<?php
if ($argc !== 3 ||
!in_array($argv[1], array('try', 'return')) ||
(int)$argv[2] < 1) {
exit(1);
}
$method = $argv[1];
$cnt = (int)$argv[2];
function mTryFunc() {
throw new Exception('test');
}
function mReturnFunc() {
return array(
'err_no' => -1,
'err_msg' => 'test',
);
}
function errorFunc($str) {
}
function mTry($cnt) {
for ($i = 0; $i < $cnt; $i++) {
try {
mTryFunc();
}
catch (Exception $e) {
errorFunc($e->getMessage());
}
}
}
function mReturn($cnt) {
for ($i = 0; $i < $cnt; $i++) {
$ret = mReturnFunc();
if ($ret['err_no'] != 0) {
errorFunc($ret['err_msg']);
}
}
}
$timeStart = microtime(true);
switch ($method) {
case 'try':
mTry($cnt);
break;
case 'return':
mReturn($cnt);
break;
default:
exit(1);
}
$timeEnd = microtime(true);
$result = $timeEnd - $timeStart;
echo "Method:$method Cycle:$cnt Cost:$result\n";
exit(0);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询