update : 2015.11.03
php.shukuma.com검색:
|
Phar::extractTo(Unknown) Phar::extractTo — Extract the contents of a phar archive to a directory 설명
public bool Phar::extractTo
( string
$pathto
[, string|array $files
[, bool $overwrite = false
]] )
Extract all files within a phar archive to disk. Extracted files and directories preserve permissions as stored in the archive. The optional parameters allow optional control over which files are extracted, and whether existing files on disk can be overwritten. The second parameter files can be either the name of a file or directory to extract, or an array of names of files and directories to extract. By default, this method will not overwrite existing files, the third parameter can be set to true to enable overwriting of files. This method is similar to ZipArchive::extractTo(). 인수
반환값
returns 오류/예외Throws PharException if errors occur while flushing changes to disk. 예제
Example #1 A Phar::extractTo() example
<?php |