php-src/ext/reflection/tests/parameters_001.phpt

39 lines
728 B
Plaintext
Raw Normal View History

2004-08-02 22:59:58 +00:00
--TEST--
ReflectionParameter Check for parameter being optional
2004-08-02 22:59:58 +00:00
--FILE--
<?php
class Test {
function func($x, $y = NULL){
}
}
$f = new ReflectionMethod('Test', 'func');
2004-08-02 23:10:53 +00:00
var_dump($f->getNumberOfParameters());
var_dump($f->getNumberOfRequiredParameters());
2004-08-02 22:59:58 +00:00
$p = new ReflectionParameter(array('Test', 'func'), 'x');
var_dump($p->isOptional());
$p = new ReflectionParameter(array('Test', 'func'), 'y');
var_dump($p->isOptional());
try {
$p = new ReflectionParameter(array('Test', 'func'), 'z');
var_dump($p->isOptional());
}
catch (Exception $e) {
var_dump($e->getMessage());
}
?>
===DONE===
--EXPECT--
2004-08-02 23:10:53 +00:00
int(2)
int(1)
2004-08-02 22:59:58 +00:00
bool(false)
bool(true)
2005-08-23 12:53:31 +00:00
unicode(54) "The parameter specified by its name could not be found"
===DONE===