fix #6: compatibility with 8.2
[awesomized/ext-ion] / tests / unserialize / stream.phpt
1 --TEST--
2 ion\unserialize/stream
3 --EXTENSIONS--
4 ion
5 --FILE--
6 TEST
7 <?php
8 $s = fopen("php://temp", "w+");
9 fwrite($s, "123");
10 rewind($s);
11 var_dump(ion\unserialize($s));
12 ?>
13 DONE
14 --EXPECTF--
15 TEST
16 int(123)
17 DONE