diff options
| author | Sebastian Bergmann <sebastian@php.net> | 2009-04-08 16:08:58 +0000 |
|---|---|---|
| committer | Sebastian Bergmann <sebastian@php.net> | 2009-04-08 16:08:58 +0000 |
| commit | fa587effb79a043bd32cd93800a912907d7d346d (patch) | |
| tree | 866309a20bab843ed0fb63c63cd93b3c5f9e54d4 /ext/reflection/tests/ReflectionParameter_getDeclaringFunction_basic.phpt | |
| parent | bab2569a8a8ebe8891ee1ab75c3f3efef745b580 (diff) | |
| download | php-git-fa587effb79a043bd32cd93800a912907d7d346d.tar.gz | |
Rename reflection*.phpt to Reflection*.phpt for consistency.
Diffstat (limited to 'ext/reflection/tests/ReflectionParameter_getDeclaringFunction_basic.phpt')
| -rw-r--r-- | ext/reflection/tests/ReflectionParameter_getDeclaringFunction_basic.phpt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ext/reflection/tests/ReflectionParameter_getDeclaringFunction_basic.phpt b/ext/reflection/tests/ReflectionParameter_getDeclaringFunction_basic.phpt new file mode 100644 index 0000000000..59e15a7054 --- /dev/null +++ b/ext/reflection/tests/ReflectionParameter_getDeclaringFunction_basic.phpt @@ -0,0 +1,37 @@ +--TEST-- +ReflectionParameter::getDeclaringFunction() +--CREDITS-- +Stefan Koopmanschap <stefan@stefankoopmanschap.nl> +#testfest roosendaal on 2008-05-10 +--FILE-- +<?php +function ReflectionParameterTest($test, $test2 = null) { + echo $test; +} +$reflect = new ReflectionFunction('ReflectionParameterTest'); +$params = $reflect->getParameters(); +foreach($params as $key => $value) { + echo $value->getDeclaringFunction() . "\n"; +} +?> +==DONE== +--EXPECTF-- +Function [ <user> function ReflectionParameterTest ] { + @@ %s.php %d - %d + + - Parameters [2] { + Parameter #0 [ <required> $test ] + Parameter #1 [ <optional> $test2 = NULL ] + } +} + +Function [ <user> function ReflectionParameterTest ] { + @@ %s.php %d - %d + + - Parameters [2] { + Parameter #0 [ <required> $test ] + Parameter #1 [ <optional> $test2 = NULL ] + } +} + +==DONE== |
