1--TEST-- 2ReflectionParameter::export() without parameters 3--CREDITS-- 4Stefan Koopmanschap <stefan@stefankoopmanschap.nl> 5--FILE-- 6<?php 7function ReflectionParameterTest($test, $test2 = null) { 8 echo $test; 9} 10$reflect = new ReflectionFunction('ReflectionParameterTest'); 11foreach($reflect->getParameters() as $key => $value) { 12 ReflectionParameter::export(); 13} 14?> 15==DONE== 16--EXPECTF-- 17Warning: ReflectionParameter::export() expects at least 2 parameters, 0 given in %s.php on line %d 18 19Warning: ReflectionParameter::export() expects at least 2 parameters, 0 given in %s.php on line %d 20==DONE== 21