アニメ!アニメ!

2022年3月18日金曜日

PHP 引数の型

 <?php


declare(strict_types=1);


function showInfo(string $name, int $score): void

{

  echo $name . ': ' . $score . PHP_EOL;

}


// showInfo('taguchi', 40);

// showInfo('taguchi', 'dotinstall');

showInfo('taguchi', '4');


0 件のコメント:

コメントを投稿