运行 ❯
获取您的
自有 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<?php declare(strict_types=1); // strict requirement function addNumbers(int $a, int $b) { return $a + $b; } echo addNumbers(5, "5 days"); // since strict is enabled and "5 days" is not an integer, an error will be thrown ?>
PHP 致命错误: 未捕获的 TypeError: 传递给 addNumbers() 的参数 2 必须是整数类型,但给定的是字符串,调用自 /home/bWN0Ml/prog.php 的第 6 行,定义于 /home/bWN0Ml/prog.php 的第 3 行 堆栈跟踪: #0 /home/bWN0Ml/prog.php(6): addNumbers(5, '5 days') #1 {main} 抛出在 /home/bWN0Ml/prog.php 的第 3 行