php函数rename()用于重命名或移动文件或目录
▥php
𝄐 0
phprename 无效windows代码32
php函数rename()用于重命名或移动文件或目录。
函数语法:
php
bool rename ( string $oldname , string $newname [, resource $context ] )
参数说明:
- $oldname:原文件或目录路径和名称。
- $newname:新的文件或目录路径和名称。
- $context:可选参数,规定所使用的上下文资源(例如使用特定的用户权限)。
该函数返回值为布尔类型,如果操作成功则返回true,否则返回false。
以下是一个重命名文件的示例:
php
$old_file = "example.txt";
$new_file = "new_example.txt";
if (rename($old_file, $new_file)) {
echo "文件已被重命名!";
} else {
echo "文件重命名失败。";
}
此代码将尝试将example.txt文件重命名为new_example.txt。如果成功,则输出文件已被重命名!,否则输出文件重命名失败。
php函数rename()用于重命名或移动文件或目录。
函数语法:
php
bool rename ( string $oldname , string $newname [, resource $context ] )
参数说明:
- $oldname:原文件或目录路径和名称。
- $newname:新的文件或目录路径和名称。
- $context:可选参数,规定所使用的上下文资源(例如使用特定的用户权限)。
该函数返回值为布尔类型,如果操作成功则返回true,否则返回false。
以下是一个重命名文件的示例:
php
$old_file = "example.txt";
$new_file = "new_example.txt";
if (rename($old_file, $new_file)) {
echo "文件已被重命名!";
} else {
echo "文件重命名失败。";
}
此代码将尝试将example.txt文件重命名为new_example.txt。如果成功,则输出文件已被重命名!,否则输出文件重命名失败。
本文地址:
/show-271215.html
版权声明:除非特别标注原创,其它均来自互联网,转载时请以链接形式注明文章出处。