mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
25 lines
359 B
PHP
25 lines
359 B
PHP
--TEST--
|
|
oci_internal_debug()
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
require(__DIR__."/details.inc");
|
|
|
|
oci_internal_debug(true);
|
|
|
|
if (!empty($dbase)) {
|
|
oci_connect($user, $password, $dbase);
|
|
}
|
|
else {
|
|
oci_connect($user, $password);
|
|
}
|
|
|
|
oci_internal_debug(false);
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|