1--TEST-- 2oci_connect() without ORACLE_HOME set (OCIServerAttach() segfaults) 3--EXTENSIONS-- 4oci8 5--SKIPIF-- 6<?php 7ob_start(); 8phpinfo(INFO_MODULES); 9$phpinfo = ob_get_clean(); 10$ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo); 11if ($ov != 1) { 12 die ("skip Test only valid when OCI8 is built with an ORACLE_HOME"); 13} 14preg_match('/^([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches); 15if (!(isset($matches[0]) && 16 (($matches[1] == 11 && $matches[2] >= 2) || 17 ($matches[1] >= 12) 18 ))) { 19 die("skip test expected to work only with Oracle 11gR2 or greater version of client"); 20} 21?> 22--ENV-- 23ORACLE_HOME="" 24--FILE-- 25<?php 26 27require __DIR__."/details.inc"; 28 29if (!empty($dbase)) { 30 var_dump(oci_connect($user, $password, $dbase)); 31} 32else { 33 var_dump(oci_connect($user, $password)); 34} 35 36?> 37--EXPECTF-- 38Warning: oci_connect(): OCIEnvNlsCreate() failed. There is something wrong with your system - please check that ORACLE_HOME and %s are set and point to the right directories in %s on line %d 39 40Warning: oci_connect(): Error while trying to retrieve text for error ORA-01804 41 in %s on line %d 42bool(false) 43