PHP move_uploaded_file() 函数
PHP move_uploaded_file() 函数
完整的 PHP Filesystem 参考手册定义和用法
move_uploaded_file() 函数把上传的文件移动到新位置。
如果成功该函数返回 TRUE,如果失败则返回 FALSE。
语法
move_uploaded_file(file,newloc)
参数 | 描述 |
---|---|
file | 必需。规定要移动的文件。 |
newloc | 必需。规定文件的新位置。 |
提示和注释
注释:该函数仅用于通过 HTTP POST 上传的文件。
注释:如果目标文件已经存在,将会被覆盖。
完整的 PHP Filesystem 参考手册相关文章
- PHP 语法
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP 类型比较
- PHP 常量
- PHP 函数
- PHP $_GET 变量
- PHP array_intersect_ukey() 函数
- PHP array_keys() 函数
- PHP array_rand() 函数
- PHP array_reduce() 函数
- PHP array_udiff() 函数
- PHP array_uintersect_uassoc() 函数
- PHP compact() 函数
- PHP pos() 函数
- PHP rsort() 函数
- PHP sizeof() 函数
- PHP uasort() 函数
- PHP uksort() 函数
- PHP 5 Directory 函数