1--TEST--
2DRCP: oci_connect() with oci_close() and oci8.old_oci_close_semantics ON
3--EXTENSIONS--
4oci8
5--INI--
6oci8.old_oci_close_semantics=1
7oci8.connection_class=test
8--FILE--
9<?php
10
11require __DIR__."/details.inc";
12
13// Test will open a connection
14// Close the connection
15// Open another connection
16// With oci_close() being a no-op, the same connection will be returned
17
18
19echo "This is with a OCI_CONNECT\n";
20var_dump($conn1 = oci_connect($user,$password,$dbase));
21$rn1 = (int)$conn1;
22oci_close($conn1);
23
24// Open another connection
25
26var_dump($conn2 = oci_connect($user,$password,$dbase));
27$rn2 = (int)$conn2;
28oci_close($conn2);
29
30// Compare the resource numbers
31
32if ($rn1 === $rn2)
33    echo "Both connections share a resource : OK\n";
34else
35    echo "Both connections are different : NOT OK\n";
36
37echo "Done\n";
38
39?>
40--EXPECTF--
41Deprecated: Directive oci8.old_oci_close_semantics is deprecated%s
42This is with a OCI_CONNECT
43resource(%d) of type (oci8 connection)
44resource(%d) of type (oci8 connection)
45Both connections share a resource : OK
46Done
47