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