PHP 8.4.6 Released!

ReflectionClass::getFileName

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getFileNameGets the filename of the file in which the class has been defined

Description

public ReflectionClass::getFileName(): string|false

Gets the filename of the file in which the class has been defined.

Parameters

This function has no parameters.

Return Values

Returns the filename of the file in which the class has been defined. If the class is defined in the PHP core or in a PHP extension, false is returned.

See Also

User Contributed Notes

robot at znframework dot com
7 years ago
<?php

$a
= new \ReflectionClass('ZN\Database\InternalDB');

var_dump($a->getFileName());

// Output: C:\xampp7\htdocs\develop\Internal\Database\DB\InternalDB.php
me at yeganemehr dot net
8 months ago
Please note that returned value from this function is actually realpath of the file and if your file is symlink, target of the link will return.
To Top