Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/scripts/dev/generate-phpt/src/ |
Current File : //usr/local/src/php7/php-7.0.5/scripts/dev/generate-phpt/src/gtFunction.php |
<?php /** * Class reperesents a single PHP function. * */ class gtFunction extends gtTestSubject { private $functionName; /** * Set the name of the name of the function * * @param string $functionName */ public function __construct($functionName) { $this->functionName = $functionName; } /** * Get the names of function arguments and initialise mandatory and optional argument arrays * */ public function setArgumentNames() { $function= new ReflectionFunction($this->functionName); foreach ($function->getParameters() as $i => $param) { if($param->isOptional()) { $this->optionalArgumentNames[] = $param->getName(); } else { $this->mandatoryArgumentNames[] = $param->getName(); } } } /** * Return the name of the function * * @return string */ public function getName() { return $this->functionName; } } ?>
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare