summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/drcp_connection_class.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/drcp_connection_class.phpt')
-rw-r--r--ext/oci8/tests/drcp_connection_class.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/oci8/tests/drcp_connection_class.phpt b/ext/oci8/tests/drcp_connection_class.phpt
index c01c144d23..b6ca31ce2a 100644
--- a/ext/oci8/tests/drcp_connection_class.phpt
+++ b/ext/oci8/tests/drcp_connection_class.phpt
@@ -2,9 +2,9 @@
DRCP: oci8.connection_class with ini_get() and ini_set()
--SKIPIF--
<?php
-if (!extension_loaded('oci8')) die("skip no oci8 extension");
+if (!extension_loaded('oci8')) die("skip no oci8 extension");
preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
-if (!(isset($matches[0]) && $matches[0] >= 11)) {
+if (!(isset($matches[0]) && $matches[0] >= 11)) {
die("skip works only with Oracle 11g or greater version of Oracle client libraries");
}
?>
@@ -16,15 +16,15 @@ oci8.connection_class=test
echo "Setting a new connection class now\n";
ini_set('oci8.connection_class',"New cc");
-// Get the New connection class name .Should return New CC
+// Get the New connection class name. Should return New CC
$new_cc = ini_get('oci8.connection_class');
-echo "The New oci8.connection_class is $new_cc \n";
+echo "The New oci8.connection_class is $new_cc\n";
echo "Done\n";
?>
--EXPECTF--
Setting a new connection class now
-The New oci8.connection_class is New cc
+The New oci8.connection_class is New cc
Done