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