$destination_path = getcwd().DIRECTORY_SEPARATOR;
我使用上面的方法来获取包含上述脚本的文件夹的完整路径。我想消除字符串的起始部分以仅获取当前文件夹名称。
例如:如果 $ destination_path = E:/ www / stack; 我想从中删除 E:/ www / 以仅获取堆栈结果。
答案 0 :(得分:0)
尝试
$destination_path = getcwd().DIRECTORY_SEPARATOR;
$folder = basename($destination_path);
getcwd
将提供current working directory
,这将是要执行的php文件的目录,或者是current working directory
,以防您从命令行执行。
如果要获取包含具有此特定代码的文件的目录,请使用
$destination_path = dirname(__FILE__).DIRECTORY_SEPARATOR;
$folder = basename($destination_path);