运行 ❯
获取您的
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php declare(strict_types=1); function sum(int $a, int $b) { return $a + $b; } // Throws a fatal error because '5' is a string instead of a number sum("5", 1); ?> </body> </html>
PHP 致命错误: strict_types 声明必须是脚本中的第一条语句 在 /home/h0iQ5o/prog.php 的第 6 行