summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug45216.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug45216.phpt')
-rw-r--r--ext/spl/tests/bug45216.phpt22
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/spl/tests/bug45216.phpt b/ext/spl/tests/bug45216.phpt
new file mode 100644
index 0000000..b3c4aa5
--- /dev/null
+++ b/ext/spl/tests/bug45216.phpt
@@ -0,0 +1,22 @@
+--TEST--
+SPL: SplFileObject::fgetss (bug 45216)
+--CREDITS--
+Perrick Penet <perrick@noparking.net>
+#testfest phpcampparis 2008-06-07
+--FILE--
+<?php
+$file = dirname(__FILE__) . '/foo.html';
+file_put_contents($file, 'text 0<div class="tested">text 1</div>');
+$handle = fopen($file, 'r');
+
+$object = new SplFileObject($file);
+var_dump($object->fgetss());
+var_dump(fgetss($handle));
+?>
+--CLEAN--
+<?php
+unlink(dirname(__FILE__) . '/foo.html');
+?>
+--EXPECTF--
+string(12) "text 0text 1"
+string(12) "text 0text 1"