--TEST-- Oracle Database 12c Implicit Result Sets: oci_get_implicit_resultset: interleaved with DBMS_OUTPUT --SKIPIF-- true, 'timesten' => false); // test runs on these DBs require(__DIR__.'/skipif.inc'); preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); if (!(isset($matches[0]) && $matches[1] >= 12)) { die("skip expected output only valid when using Oracle Database 12c or greater"); } preg_match('/^[[:digit:]]+/', oci_client_version(), $matches); if (!(isset($matches[0]) && $matches[0] >= 12)) { die("skip works only with Oracle 12c or greater version of Oracle client libraries"); } ?> --FILE-- ===DONE=== --EXPECT-- Test 1 array(3) { [0]=> string(6) "Line 1" [1]=> string(6) "Line 2" [2]=> string(6) "Line 3" } 1 abcde 2 fghij 3 klmno t u v X Test 2 1 abcde 2 fghij 3 klmno t u v X array(3) { [0]=> string(6) "Line 1" [1]=> string(6) "Line 2" [2]=> string(6) "Line 3" } ===DONE===