PHP tempnam() 函数

PHP 教程 · 2019-01-25 16:29:10

定义和用法

tempnam() 函数在指定的目录中创建一个具有唯一文件名的临时文件。

该函数返回新的临时文件名,如果失败则返回 FALSE。

语法


tempnam(dir,prefix)


参数 描述
dir 必需。规定创建临时文件的目录。
prefix 必需。规定文件名的开头。

提示和注释

注释:如果指定的目录不存在,那么 tempnam() 会在系统的临时目录中生成一个文件。

提示:参见 tmpfile()。

实例


<?php
echo tempnam("C:inetpubtestweb","TMP0");
?> 

上面的代码将输出:


C:inetpubtestwebTMP1.tmp


点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html

查看所有标签

Masterminds of Programming

Masterminds of Programming

Federico Biancuzzi、Chromatic / O'Reilly Media / 2009-03-27 / USD 39.99

Description Masterminds of Programming features exclusive interviews with the creators of several historic and highly influential programming languages. Think along with Adin D. Falkoff (APL), Jame......一起来看看 《Masterminds of Programming》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换