码迷,mamicode.com
首页 > Web开发 > 详细

php 7.1 特性 ArgumentCountError 异常

时间:2017-10-10 11:35:13      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:line   func   iss   count   ted   for   dex   log   expect   

早期的 PHP 版本允许函数调用时,传递的参数少于函数定义本身要求的参数个数。当你调用函数时就会抛出一个参数丢失的警告。

// PHP 5.6

function sum($a, $b)
{
    return $a + $b;
}

sum(); 
// Warning: Missing argument 1 for sum()
// Warning: Missing argument 2 for sum()

sum(3);
// Warning: Missing argument 2 for sum()

在这种情况下警告没什么用,开发者必须自行检查参数是否正确。在 PHP 7.1 中,这些警告变成了一个 ArgumentCountError 的异常:

// PHP 7.1

function sum($a, $b)
{
    return $a + $b;
}

sum(); 
// Fatal error: Uncaught ArgumentCountError: Too few arguments to function sum(), 0 passed in /vagrant/index.php on line 18 and exactly 2 expected in /vagrant/index.php:13

sum(3); // skipped

sum(3, 4); // skipped 

 

php 7.1 特性 ArgumentCountError 异常

标签:line   func   iss   count   ted   for   dex   log   expect   

原文地址:http://www.cnblogs.com/leilei-1/p/7644249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!