update : 2015.11.03
php.shukuma.com검색:
|
Phar::offsetExists(PHP >= 5.3.0, PECL phar >= 1.0.0) Phar::offsetExists — determines whether a file exists in the phar 설명
public bool Phar::offsetExists
( string
$offset
)This is an implementation of the ArrayAccess interface allowing direct manipulation of the contents of a Phar archive using array access brackets. offsetExists() is called whenever isset() is called. 인수
반환값
Returns 예제
Example #1 A Phar::offsetExists() example
<?php 위 예제의 출력: bool(true) bool(false) 참고
|