diff options
author | Felipe Pena <felipe@php.net> | 2010-12-04 15:48:45 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-12-04 15:48:45 +0000 |
commit | 75d8fd8d423896226d62447a8d691fb96905b6cc (patch) | |
tree | c7155c6d7bb93de324f85cb8a319e94a0a89fd73 /ext/pdo_oci/tests | |
parent | 57fc653c0566a39c417a56a239805689553b36d9 (diff) | |
download | php-git-75d8fd8d423896226d62447a8d691fb96905b6cc.tar.gz |
- Fixed test
Diffstat (limited to 'ext/pdo_oci/tests')
-rw-r--r-- | ext/pdo_oci/tests/pdo_oci_attr_client.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_oci/tests/pdo_oci_attr_client.phpt b/ext/pdo_oci/tests/pdo_oci_attr_client.phpt index b21f1b77f1..372ccec8e1 100644 --- a/ext/pdo_oci/tests/pdo_oci_attr_client.phpt +++ b/ext/pdo_oci/tests/pdo_oci_attr_client.phpt @@ -17,7 +17,7 @@ echo "ATTR_CLIENT_VERSION: "; $cv = $dbh->getAttribute(PDO::ATTR_CLIENT_VERSION); var_dump($cv); -$s = split("\.", $cv); +$s = explode(".", $cv); if ($s[0] >= 10 && count($s) > 1 && $s[1] >= 2) { if (count($s) != 5) { echo "Wrong number of values in array\nVersion was: "; |