update : 2015.11.03
php.shukuma.com검색:
|
tempnam(PHP 4, PHP 5, PHP 7) tempnam — Create file with unique file name 설명
string tempnam
( string
$dir
, string $prefix
)Creates a file with a unique filename, with access permission set to 0600, in the specified directory. If the directory does not exist or is not writable, tempnam() may generate a file in the system's temporary directory, and return the full path to that file, including its name. 인수
반환값
Returns the new temporary filename (with path), or 변경점
예제
Example #1 tempnam() example
<?php 주의
참고
|