|
PHP5中文手册
Phar::offsetGet(PECL phar:1.0.0-1.2.1) Phar::offsetGet — get a PharFileInfo object for a specific file 说明
int Phar::offsetGet
( string $offset
)
This is an implementation of the ArrayAccess interface allowing direct manipulation of the contents of a Phar archive using array access brackets. offsetGet is used for retrieving files from a Phar archive. 参数
返回值A PharFileInfo object is returned that can be used to iterate over a file's contents or to retrieve information about the current file. 错误/异常This method throws BadMethodCallException if the file does not exist in the Phar archive. 范例
Example#1 A Phar::offsetGet() example As with all classes that implement the ArrayAccess interface, offsetGet is automatically called when using the [] angle bracket operator
<?php 上例将输出:
|