You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
335 B

--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"