2017-12-01から1ヶ月間の記事一覧
PHP 7.2でcount関数にCountableタイプ以外を指定するとWarningが出るようになったということで試してみた。 1, "two" => 2]); // 2 echo count(null); // Warning echo count(new StdClass); // Warning echo count(1); // Warning echo count("1");…
PHP 7.2でcount関数にCountableタイプ以外を指定するとWarningが出るようになったということで試してみた。 1, "two" => 2]); // 2 echo count(null); // Warning echo count(new StdClass); // Warning echo count(1); // Warning echo count("1");…