mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
31c35e5cad
remove ENV tag from the old ones
36 lines
597 B
PHP
36 lines
597 B
PHP
--TEST--
|
|
statement cache
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
require dirname(__FILE__)."/connect.inc";
|
|
|
|
$pc = oci_pconnect($user, $password, $dbase);
|
|
|
|
$stmt = oci_parse($pc, "select 1+3 from dual", true);
|
|
oci_execute($stmt);
|
|
var_dump(oci_fetch_array($stmt));
|
|
|
|
$stmt = oci_parse($pc, "select 1+3 from dual", true);
|
|
oci_execute($stmt);
|
|
var_dump(oci_fetch_array($stmt));
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
array(2) {
|
|
[0]=>
|
|
string(1) "4"
|
|
["1+3"]=>
|
|
string(1) "4"
|
|
}
|
|
array(2) {
|
|
[0]=>
|
|
string(1) "4"
|
|
["1+3"]=>
|
|
string(1) "4"
|
|
}
|
|
Done
|