Skip to content

Commit 75d8fd8

Browse files
committed
- Fixed test
1 parent 57fc653 commit 75d8fd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pdo_oci/tests/pdo_oci_attr_client.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ echo "ATTR_CLIENT_VERSION: ";
1717
$cv = $dbh->getAttribute(PDO::ATTR_CLIENT_VERSION);
1818
var_dump($cv);
1919

20-
$s = split("\.", $cv);
20+
$s = explode(".", $cv);
2121
if ($s[0] >= 10 && count($s) > 1 && $s[1] >= 2) {
2222
if (count($s) != 5) {
2323
echo "Wrong number of values in array\nVersion was: ";

0 commit comments

Comments
 (0)