From 0aa36e2d97da0cc92e127775a0e1ad2b6735a802 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sat, 4 Dec 2010 15:48:45 +0000 Subject: [PATCH] - Fixed test --- ext/pdo_oci/tests/pdo_oci_attr_client.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: "; -- 2.40.0