Php を使用して関数内のパラメーターの実際の型を示したい、または示したいと思いますが、可能ですか?
例 :
<?php
function test($param)
{
echo $param;
}
$str = "hiiiii everyone";
test($str);
?>
関数テストに $param だけを入れる代わりに; みたいなものを入れてみたい
function test(string $param) // string is the type of the param, that can be int, long ect or an object which I had created.
PHPの最新バージョンでそれを行うことは可能ですか?