getcwd()
函数用于获取当前工作目录的绝对路径
<?php
$custom_path = '/path/to/your/directory';
if (is_dir($custom_path)) {
$current_directory = $custom_path;
} else {
$current_directory = getcwd();
}
echo "Current working directory: " . $current_directory;
?>
在这个示例中,我们首先检查 $custom_path
是否是一个有效的目录。如果是,我们将其设置为当前工作目录;否则,我们使用 getcwd()
获取当前工作目录。