Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试获取我的 php 文件的文件名。出于好奇,我想知道是否还有其他方法可以做到这一点。
echo "<br/>".basename($_SERVER['PHP_SELF']);
PHP 有一个返回文件路径的魔术常量:__FILE__
__FILE__
如果您只想要文件名,请使用basename(__FILE__)
basename(__FILE__)
优点是它甚至可以用于通过 CLI 调用的 php 脚本,而不是由 Web 服务器/cgi 执行。
在这里查看更多