update : 2015.11.03
php.shukuma.com

검색:
 
 
객체 비교

객체 비교

비교 연산 (==) 을 사용할때, 객체 변수는 간단한 방식으로 비교됩니다. 즉, 두 객체의 인스턴스가 동일한 속성과 값을 가지고, 같은 클래스의 인스턴스라면 동일하다고 합니다.

일치 연산 (===) 을 사용할때, 같은 클래스의 동일한 인스턴스를 참조하는 경우에만 동일하다고 합니다.

이 규칙들이 다음 예제에 명확히 설명되어 있습니다.

Example #1 PHP 5의 객체 비교 예제

<?php
function bool2str($bool)
{
    if (
$bool === false) {
        return 
'FALSE';
    } else {
        return 
'TRUE';
    }
}

function 
compareObjects(&$o1, &$o2)
{
    echo 
'o1 == o2 : ' bool2str($o1 == $o2) . "\n";
    echo 
'o1 != o2 : ' bool2str($o1 != $o2) . "\n";
    echo 
'o1 === o2 : ' bool2str($o1 === $o2) . "\n";
    echo 
'o1 !== o2 : ' bool2str($o1 !== $o2) . "\n";
}

class 
Flag
{
    public 
$flag;

    function 
Flag($flag true) {
        
$this->flag $flag;
    }
}

class 
OtherFlag
{
    public 
$flag;

    function 
OtherFlag($flag true) {
        
$this->flag $flag;
    }
}

$o = new Flag();
$p = new Flag();
$q $o;
$r = new OtherFlag();

echo 
"Two instances of the same class\n";
compareObjects($o$p);

echo 
"\nTwo references to the same instance\n";
compareObjects($o$q);

echo 
"\nInstances of two different classes\n";
compareObjects($o$r);
?>

위 예제의 출력:

Two instances of the same class
o1 == o2 : TRUE
o1 != o2 : FALSE
o1 === o2 : FALSE
o1 !== o2 : TRUE

Two references to the same instance
o1 == o2 : TRUE
o1 != o2 : FALSE
o1 === o2 : TRUE
o1 !== o2 : FALSE

Instances of two different classes
o1 == o2 : FALSE
o1 != o2 : TRUE
o1 === o2 : FALSE
o1 !== o2 : TRUE

Note:

확장모듈은 객체 비교 연산 (==) 에 대한 고유의 규칙을 정의할 수 있습니다.