PHP getcwd()函数与示例

PHPgetcwd()方法

getcwd的完整格式为“获取当前工作目录”,该函数getcwd()用于获取当前工作目录的名称,它不接受任何参数并返回当前工作目录。

语法:

    getcwd();

参数:

  • 它不接受任何参数。

返回值:

如果函数执行成功,则返回当前工作目录,如果函数执行失败,则返回“ FALSE”。

示例:获取当前工作目录名称的PHP代码

<?php
$result = getcwd();
echo "current working directory is: ".$result."<br/>";
?>

输出结果

current working directory is: /home