diff options
author | Marcus Boerger <helly@php.net> | 2004-11-01 01:29:06 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-11-01 01:29:06 +0000 |
commit | e0196d11a46a31f6dfdf42428e8e36eb59d55193 (patch) | |
tree | 3920e2d873a9d15d22eac6ec3c02803eef5eedcf /ext/spl/examples/dbaarray.inc | |
parent | 846666109bcceb9b19f02c3b9d915d811c7f4e36 (diff) | |
download | php-git-e0196d11a46a31f6dfdf42428e8e36eb59d55193.tar.gz |
- Do not autoload if require does the trick
Diffstat (limited to 'ext/spl/examples/dbaarray.inc')
-rwxr-xr-x | ext/spl/examples/dbaarray.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/examples/dbaarray.inc b/ext/spl/examples/dbaarray.inc index 1064b581e8..54f5ec844b 100755 --- a/ext/spl/examples/dbaarray.inc +++ b/ext/spl/examples/dbaarray.inc @@ -9,7 +9,7 @@ * SPL - Standard PHP Library */ -if (!class_exists("DbaReader")) require_once("dbareader.inc"); +if (!class_exists("DbaReader", false)) require_once("dbareader.inc"); /** @ingroup Examples * @brief This implements a DBA Array |