From: SVN Migration Date: Thu, 26 Aug 2004 22:24:49 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create branch 'PHP_5_0'. X-Git-Tag: php-5.0.2RC1~83 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6aed779dc83e1a4799b7fc2a2f13d0901c62d03d;p=php This commit was manufactured by cvs2svn to create branch 'PHP_5_0'. --- diff --git a/ext/mysqli/tests/061.phpt b/ext/mysqli/tests/061.phpt new file mode 100644 index 0000000000..438f4a203a --- /dev/null +++ b/ext/mysqli/tests/061.phpt @@ -0,0 +1,39 @@ +--TEST-- +local infile handler +--FILE-- + +--EXPECT-- +foo-bar +rab-oof diff --git a/ext/reflection/tests/bug29828.phpt b/ext/reflection/tests/bug29828.phpt new file mode 100755 index 0000000000..69b627079f --- /dev/null +++ b/ext/reflection/tests/bug29828.phpt @@ -0,0 +1,35 @@ +--TEST-- +Bug #29828 (Interfaces no longer work) +--FILE-- +getMethods())); +var_dump($r->getMethod('bla')->isConstructor()); +var_dump($r->getMethod('bla')->isAbstract()); + +$o=new BlaMore; +$o->bla(); + +?> +===DONE=== +--EXPECT-- +int(1) +bool(false) +bool(false) +Hello +===DONE===