<?php $refFunc = new \ReflectionFunction('get_defined_functions'); var_dump($refFunc->getNumberOfRequiredParameters()); foreach ($refFunc->getParameters() as $parameter) { var_dump(sprintf('Parameter: "%s"; optional: %s', $parameter->name, var_export($parameter->isOptional(), true))); }
You have javascript disabled. You will not be able to edit any code.