ウェブ家の備忘録

ウェブデザイナーの備忘録

PHPで無名関数を定義して即実行

php7.0以降


<?php
(function() {
  
})();
?>

php5.x以降


<?php
call_user_func(function() { 
   
});
?>