summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplObjectStorage_offsetGet.phpt
blob: e73f6b1bd694c9cd14b3121702483e3d31cb2a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Standard success for SplObjectStorage::offsetGet
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php

$s = new SplObjectStorage();
$o1 = new stdClass();
$s[$o1] = 'some_value';

echo $s->offsetGet($o1);

?>
--EXPECT--
some_value