php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #74879 Wrong path returned by ReflectionClass::getFileName
Submitted: 2017-07-07 23:13 UTC Modified: -
From: waldermort at gmail dot com Assigned:
Status: Open Package: Reflection related
PHP Version: 7.1.7 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
1 + 45 = ?
Subscribe to this entry?

 
 [2017-07-07 23:13 UTC] waldermort at gmail dot com
Description:
------------
When a StreamWrapper is used in combination with the ReflectionClass API, the scheme is stripped from the path returned by getFileName().

For example: If a create an in-memory file at 'vfs:://foo/bar.php' which contains valid PHP code (something like '<?php namespace Suite { class Test {} }'). I can include or exec the file and create an instance of the class.

Note, this is done as part of a test suite for a package which generates PHP classes from templates.

So:

include 'vfs:://foo/bar.php';

$inst = new Suite\Test();
$refl = new \ReflectionClass($inst);

I would now expect $refl->getFileName() to return 'vfs:://foo/bar.php', but it actually returns '/foo/bar.php'.

If this is the intended behaviour, perhaps the docs could be updated to mention it.


Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 13:01:28 2024 UTC