summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug64782.phpt
blob: ac5d08d7d1e9792ccd90043590d9a74123711135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #64782: SplFileObject constructor make $context optional / give it a default value
--FILE--
<?php

var_dump(new SplFileObject(__FILE__, "r", false, null));

?>
--EXPECTF--
object(SplFileObject)#1 (%d) {
  ["pathName":"SplFileInfo":private]=>
  string(%d) "%s/bug64782.php"
  ["fileName":"SplFileInfo":private]=>
  string(12) "bug64782.php"
  ["openMode":"SplFileObject":private]=>
  string(1) "r"
  ["delimiter":"SplFileObject":private]=>
  string(1) ","
  ["enclosure":"SplFileObject":private]=>
  string(1) """
}