update : 2015.11.03
php.shukuma.com검색:
|
PharFileInfo::getMetadata(PHP >= 5.3.0, PECL phar >= 1.0.0) PharFileInfo::getMetadata — Returns file-specific meta-data saved with a file 설명Return meta-data that was saved in the Phar archive's manifest for this file. 인수
반환값
any PHP variable that can be serialized and is stored as meta-data for the file,
or 예제
Example #1 A PharFileInfo::getMetadata() example
<?php 위 예제의 출력: array(2) { ["user"]=> string(4) "bill" ["mime-type"]=> string(10) "text/plain" } 참고
|