summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplObjectStorage_offsetGet.phpt
blob: 676cbf2226299d08c6c13ee6136265dd22a1f156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--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