mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
25 lines
369 B
PHP
25 lines
369 B
PHP
--TEST--
|
|
oci_internal_debug()
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
require(dirname(__FILE__)."/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===
|