ArrayObject
PHP Manual

ArrayObject::offsetExists

(PHP 5 >= 5.1.0)

ArrayObject::offsetExistsReturns whether the requested index exists

설명

bool ArrayObject::offsetExists ( mixed $index )

인수

index

The index being checked.

반환값

TRUE if the requested index exists, otherwise FALSE

예제

Example #1 ArrayObject::offsetexists example

<?php
$arrayobj 
= new ArrayObject(array('zero''one''example'=>'e.g.'));
var_dump($arrayobj->offsetexists(1));
var_dump($arrayobj->offsetexists('example'));
var_dump($arrayobj->offsetexists('notfound'));
?>

위 예제의 출력:

bool(true)
bool(true)
bool(false)


ArrayObject
PHP Manual