<?php function default_args($test = FALSE, $context) { var_dump($test); if ($test === FALSE) {echo 'true';} } default_args(NULL, []); function no_default_args($test, $context) { var_dump($test); if ($test === FALSE) {echo 'true';} } no_default_args(NULL, []);
You have javascript disabled. You will not be able to edit any code.