projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
956dea1
)
- MFB Do not try to autoload the class, use internal only
author
Marcus Boerger
<helly@php.net>
Thu, 13 Oct 2005 18:41:04 +0000
(18:41 +0000)
committer
Marcus Boerger
<helly@php.net>
Thu, 13 Oct 2005 18:41:04 +0000
(18:41 +0000)
ext/pdo/tests/pdo_014.phpt
patch
|
blob
|
history
diff --git
a/ext/pdo/tests/pdo_014.phpt
b/ext/pdo/tests/pdo_014.phpt
index eb3e21bee989b414d159eb29fa72ef1c3b71c7e0..8692d8bee2edb929832ede359400f527e02c7618 100644
(file)
--- a/
ext/pdo/tests/pdo_014.phpt
+++ b/
ext/pdo/tests/pdo_014.phpt
@@
-4,7
+4,7
@@
PDO Common: PDOStatement SPL iterator
<?php # vim:ft=php
if (!extension_loaded('pdo')) die('skip');
if (!extension_loaded('SPL')) print 'skip SPL not available';
-if (!class_exists('IteratorIterator')) die('skip IteratorIterator class not present');
+if (!class_exists('IteratorIterator'
, false
)) die('skip IteratorIterator class not present');
$dir = getenv('REDIR_TEST_DIR');
if (false == $dir) die('skip no driver');
require_once $dir . 'pdo_test.inc';