php rename函数怎么用-LMLPHP

php rename()函数怎么用?

作用:重命名文件或目录。

语法:

rename(oldname,newname,context)
登录后复制

参数:

oldname:必需。规定要重命名的文件或目录。

newname:必需。规定文件或目录的新名称。

context:可选。规定文件句柄的环境。context 是可修改流的行为的一套选项。

返回值:成功时返回True,失败时返回False。

说明:用于 oldname 中的封装协议必须和用于 newname 中的相匹配。

php rename()函数 示例

<?php
$file = "test.txt";
$res = rename($file,"index.txt");
if($res)
{
    echo "文件重命名成功";
}else{
    echo "文件重命名失败";
}
?>
登录后复制

本篇文章就是关于rename函数的使用方法介绍,希望对需要的朋友有所帮助!

以上就是php rename函数怎么用的详细内容,更多请关注Work网其它相关文章!

09-05 02:31