ArrayAccess::offsetExists

(PHP 5, PHP 7)

ArrayAccess::offsetExists���һ��ƫ��λ���Ƿ����

˵��

abstract public ArrayAccess::offsetExists ( mixed $offset ) : boolean

���һ��ƫ��λ���Ƿ���ڡ�

��һ��ʵ���� ArrayAccess �ӿڵĶ���ʹ�� isset() �� empty() ʱ���˷�����ִ�С�

Note:

��ʹ�� empty() ���ҽ��� ArrayAccess::offsetExists() ���� TRUE ʱ��ArrayAccess::offsetGet() ���������Լ����Ϊ��ա�

����

offset

��Ҫ����ƫ��λ�á�

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

Note:

���һ���Dz����ͷ���ֵ�����أ�����ת��Ϊ��������

����

Example #1 ArrayAccess::offsetExists() ����

<?php
class obj implements arrayaccess {
    public function 
offsetSet($offset$value) {
        
var_dump(__METHOD__);
    }
    public function 
offsetExists($var) {
        
var_dump(__METHOD__);
        if (
$var == "foobar") {
            return 
true;
        }
        return 
false;
    }
    public function 
offsetUnset($var) {
        
var_dump(__METHOD__);
    }
    public function 
offsetGet($var) {
        
var_dump(__METHOD__);
        return 
"value";
    }
}

$obj = new obj;

echo 
"Runs obj::offsetExists()\n";
var_dump(isset($obj["foobar"]));

echo 
"\nRuns obj::offsetExists() and obj::offsetGet()\n";
var_dump(empty($obj["foobar"]));

echo 
"\nRuns obj::offsetExists(), *not* obj:offsetGet() as there is nothing to get\n";
var_dump(empty($obj["foobaz"]));
?>

�������̵���������ڣ�

Runs obj::offsetExists()
string(17) "obj::offsetExists"
bool(true)

Runs obj::offsetExists() and obj::offsetGet()
string(17) "obj::offsetExists"
string(14) "obj::offsetGet"
bool(false)

Runs obj::offsetExists(), *not* obj:offsetGet() as there is nothing to get
string(17) "obj::offsetExists"
bool(true)