mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
31c35e5cad
remove ENV tag from the old ones
28 lines
592 B
PHP
28 lines
592 B
PHP
--TEST--
|
|
oci_new_collection()
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
require dirname(__FILE__)."/connect.inc";
|
|
require dirname(__FILE__)."/create_type.inc";
|
|
|
|
var_dump(oci_new_collection($c, $type_name));
|
|
var_dump(oci_new_collection($c, "NONEXISTENT"));
|
|
|
|
echo "Done\n";
|
|
|
|
require dirname(__FILE__)."/drop_type.inc";
|
|
|
|
?>
|
|
--EXPECTF--
|
|
object(OCI-Collection)#%d (1) {
|
|
["collection"]=>
|
|
resource(%d) of type (oci8 collection)
|
|
}
|
|
|
|
Warning: oci_new_collection(): OCI-22303: type ""."NONEXISTENT" not found in %s on line %d
|
|
bool(false)
|
|
Done
|