
| Path : /usr/src/php/ext/reflection/tests/ |
| Current File : //usr/src/php/ext/reflection/tests/ReflectionFunction_getFileName.001.phpt |
--TEST--
ReflectionFunction::getFileName() with function in an included file
--CREDITS--
Robin Fernandes <robinf@php.net>
Steve Seear <stevseea@php.net>
--FILE--
<?php
include "included4.inc";
$funcInfo = new ReflectionFunction('g');
var_dump($funcInfo->getFileName());
?>
--EXPECTF--
%sincluded4.inc
%d
string(%d) "%sincluded4.inc"