--TEST-- Set and get connection attributes with scope end. --SKIPIF-- true, 'timesten' => false); // test runs on these DBs require(__DIR__.'/skipif.inc'); if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA user"); if ($test_drcp) die("skip output might vary with DRCP"); preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); if (!(isset($matches[0]) && $matches[1] >= 10)) { die("skip expected output only valid when using Oracle 10g or greater database server"); } ?> --FILE-- --EXPECT-- **Test - Set and get values for the attributes with scope end ************ Testing with oci_connect() Value of CLIENT_INFO has been set successfully Value of CLIENT_IDENTIFIER has been set successfully Testing with oci_new_connect() Value of ACTION has been set successfully Testing with oci_pconnect() Value of MODULE has been set successfully Get the Values from a different scope Testing with oci_connect() The value of CLIENT_INFO is The value of CLIENT_IDENTIFIER is Testing with oci_new_connect() The value of ACTION is Testing with oci_pconnect() The value of MODULE is PHP TEST50 Done