projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c47fb30
)
- Do not try to autoload the class, use internal only
author
Marcus Boerger
<helly@php.net>
Thu, 13 Oct 2005 18:37:19 +0000
(18:37 +0000)
committer
Marcus Boerger
<helly@php.net>
Thu, 13 Oct 2005 18:37:19 +0000
(18:37 +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 613929cffd276cb307cce9b3008170fc3e2da115..b26135728406e65cdf0fa2ac27c9905d1b3bd3a5 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';