码迷,mamicode.com
首页 > Web开发 > 详细

PHP chdir() 函数

时间:2019-10-11 12:26:04      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:bsp   current   技术   table   image   返回   ble   tran   tor   

实例

改变当前的目录:

<?php
// Get current directory
echo getcwd() . "<br>";

// Change directory
chdir("images");

// Get current directory
echo getcwd();
?>

结果:

/home/php
/home/php/images

 


定义和用法

chdir() 函数改变当前的目录。


语法

chdir(directory);

 

参数描述
directory 必需。规定新的当前目录。

技术细节

 

返回值: 成功则返回 TRUE。失败则返回 FALSE,且抛出 E_WARNING 级别的错误。
PHP 版本: 4.0+

「大理石平台维护」如何清洗大理石平台?

PHP chdir() 函数

标签:bsp   current   技术   table   image   返回   ble   tran   tor   

原文地址:https://www.cnblogs.com/furuihua/p/11653180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!