File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / spl / tests / SplObjectStorage_getHash.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:43 2012 UTC (12 years, 2 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

--TEST--
SplObjectStorage::getHash implementation
--FILE--
<?php
$s = new SplObjectStorage();
$o1 = new Stdclass;
$o2 = new Stdclass;
$s[$o1] = "some_value\n";
echo $s->offsetGet($o1);

class MySplObjectStorage extends SplObjectStorage {
    public function getHash($obj) {
        return 2;
    }
}

try {
    $s1 = new MySplObjectStorage;
    $s1[$o1] = "foo";
} catch(Exception $e) {
    echo "caught\n";
}

class MySplObjectStorage2 extends SplObjectStorage {
    public function getHash($obj) {
        throw new Exception("foo");
        return "asd";
    }
}

try {
    $s2 = new MySplObjectStorage2;
    $s2[$o2] = "foo";
} catch(Exception $e) {
    echo "caught\n";
}

class MySplObjectStorage3 extends SplObjectStorage {
    public function getHash($obj) {
        return "asd";
    }
}

$s3 = new MySplObjectStorage3;
$s3[$o1] = $o1;
var_dump($s3[$o1]);
$s3[$o2] = $o2;

var_dump($s3[$o1] === $s3[$o2]);

?>
===DONE===
--EXPECT--
some_value
caught
caught
object(stdClass)#2 (0) {
}
bool(true)
===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>