current_file()
作用:获取当前文件路径。
语法: string current_file()
返回值:
当前文件路径。与常量 __file__
不同,__FILE__
的值始终是它所在文件的名称,而 current_file()
则返回调用该函数的文件的名称。
示例:
<?php
echo current_file();
作用:获取当前文件路径。
语法: string current_file()
返回值:
当前文件路径。与常量 __file__
不同,__FILE__
的值始终是它所在文件的名称,而 current_file()
则返回调用该函数的文件的名称。
示例:
<?php
echo current_file();