<?php define('undefined', null); function my_function($hello = 123) { var_dump($hello); } my_function(null); // > null my_function(undefined); // > 123 my_function($v);
You have javascript disabled. You will not be able to edit any code.