Home  >  Article  >  Backend Development  >  PHP获取当前文件所在目录 getcwd()函数_PHP教程

PHP获取当前文件所在目录 getcwd()函数_PHP教程

WBOY
WBOYOriginal
2016-07-21 15:46:39810browse

用 getcwd() 函数或 dirname(__FILE__)

复制代码 代码如下:

echo getcwd() . "
";
echo dirname(__FILE__);
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/320124.htmlTechArticle用 getcwd() 函数或 dirname(__FILE__) 复制代码 代码如下: ?php echo getcwd() . "br/"; echo dirname(__FILE__); ?...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn