运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,浅色/深色
转至 Spaces
<?php declare(strict_types=1); // strict requirement function addNumbers(float $a, float $b) : int { return (int)($a + $b); } echo addNumbers(1.2, 5.2); ?>
6