gpt4 book ai didi

php - (PHPUnit) PHP fatal error : Uncaught Error: Call to undefined function each()

转载 作者:行者123 更新时间:2023-12-04 08:02:30 31 4
gpt4 key购买 nike

首先我收到一个警告和一个 fatal error 。警告:

Warning:  "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?
然后我用break替换了continue,警告消失了。但即使更换后, fatal error 仍然发生。 fatal error :
PHP Fatal error:  Uncaught Error: Call to undefined function each() in D:\xampp\php\pear\PHPUnit\Util\Getopt.php:80
Stack trace:
#0 D:\xampp\php\pear\PHPUnit\TextUI\Command.php(242): PHPUnit_Util_Getopt::getopt(Array, 'd:c:hv', Array)
#1 D:\xampp\php\pear\PHPUnit\TextUI\Command.php(138): PHPUnit_TextUI_Command->handleArguments(Array)
#2 D:\xampp\php\pear\PHPUnit\TextUI\Command.php(129): PHPUnit_TextUI_Command->run(Array, true)
#3 D:\xampp\php\phpunit(46): PHPUnit_TextUI_Command::main()
#4 {main}
thrown in D:\xampp\php\pear\PHPUnit\Util\Getopt.php on line 80

Fatal error: Uncaught Error: Call to undefined function each() in D:\xampp\php\pear\PHPUnit\Util\Getopt.php:80
Stack trace:
#0 D:\xampp\php\pear\PHPUnit\TextUI\Command.php(242): PHPUnit_Util_Getopt::getopt(Array, 'd:c:hv', Array)
#1 D:\xampp\php\pear\PHPUnit\TextUI\Command.php(138): PHPUnit_TextUI_Command->handleArguments(Array)
#2 D:\xampp\php\pear\PHPUnit\TextUI\Command.php(129): PHPUnit_TextUI_Command->run(Array, true)
#3 D:\xampp\php\phpunit(46): PHPUnit_TextUI_Command::main()
Getopt.php 的第 77-83 行
        reset($args);
array_map('trim', $args);

while (list($i, $arg) = each($args)) {
if ($arg == '') {
continue;
}
我使用的是 PHP 8.0.1 和 PHPUnit 9(至少我认为,因为我不能使用命令来检查,我在 2 月 7 日之后下载了它)

最佳答案

不是 PHPUnit 专家,但 PHP 8 中不再提供“each”函数

Warning: This function has been DEPRECATED as of PHP 7.2.0, and REMOVEDas of PHP 8.0.0. Relying on this function is highly discouraged.


取自 PHP site
您使用的 PHPUnit 版本可能还不是 PHP 8 的最新版本。
如果可以,请检查版本,然后在此处查看 PHPUnit version support

关于php - (PHPUnit) PHP fatal error : Uncaught Error: Call to undefined function each(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66388326/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com