1--TEST-- 2oci_new_collection() 3--SKIPIF-- 4<?php 5$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs 6require(__DIR__.'/skipif.inc'); 7?> 8--FILE-- 9<?php 10 11require __DIR__."/connect.inc"; 12require __DIR__."/create_type.inc"; 13 14var_dump(oci_new_collection($c, $type_name)); 15var_dump(oci_new_collection($c, "NONEXISTENT")); 16 17echo "Done\n"; 18 19require __DIR__."/drop_type.inc"; 20 21?> 22--EXPECTF-- 23object(OCICollection)#%d (1) { 24 ["collection"]=> 25 resource(%d) of type (oci8 collection) 26} 27 28Warning: oci_new_collection(): OCI-22303: type ""."NONEXISTENT" not found in %s on line %d 29bool(false) 30Done 31