1--TEST-- 2oci_lob_import()/read() 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_table.inc'; 13 14$ora_sql = "INSERT INTO 15 ".$schema.$table_name." (blob) 16 VALUES (empty_blob()) 17 RETURNING 18 blob 19 INTO :v_blob "; 20 21$statement = oci_parse($c,$ora_sql); 22$blob = oci_new_descriptor($c,OCI_D_LOB); 23oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB); 24oci_execute($statement, OCI_DEFAULT); 25 26var_dump($blob); 27var_dump($blob->seek(10, OCI_SEEK_CUR)); 28var_dump($blob->import(__DIR__."/lob_009.txt")); 29var_dump(oci_lob_import($blob, __DIR__."/lob_009.txt")); 30unset($blob->descriptor); 31var_dump(oci_lob_import($blob, __DIR__."/lob_009.txt")); 32oci_commit($c); 33 34$select_sql = "SELECT blob FROM ".$schema.$table_name." FOR UPDATE"; 35$s = oci_parse($c, $select_sql); 36oci_execute($s, OCI_DEFAULT); 37 38var_dump($row = oci_fetch_array($s)); 39 40while (!$row[0]->eof()) { 41 var_dump(str_replace("\r", "", $row[0]->read(1024))); 42} 43 44require __DIR__.'/drop_table.inc'; 45 46echo "Done\n"; 47 48?> 49--EXPECTF-- 50object(OCILob)#%d (1) { 51 ["descriptor"]=> 52 resource(%d) of type (oci8 descriptor) 53} 54bool(true) 55bool(true) 56bool(true) 57 58Warning: oci_lob_import(): Unable to find descriptor property in %s on line %d 59bool(false) 60array(2) { 61 [0]=> 62 object(OCILob)#%d (1) { 63 ["descriptor"]=> 64 resource(%d) of type (oci8 descriptor) 65 } 66 ["BLOB"]=> 67 object(OCILob)#%d (1) { 68 ["descriptor"]=> 69 resource(%d) of type (oci8 descriptor) 70 } 71} 72string(43) "this 73is 74a 75test 76file for 77test lob_009.phpt 78" 79Done 80