1--TEST-- 2oci_lob_export() 3--SKIPIF-- 4<?php 5$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs 6require(dirname(__FILE__).'/skipif.inc'); 7?> 8--FILE-- 9<?php 10 11require dirname(__FILE__).'/connect.inc'; 12require dirname(__FILE__).'/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 26$blob; 27 28var_dump($blob->write("test string is here\nnew string")); 29 30oci_commit($c); 31 32$select_sql = "SELECT blob FROM ".$schema.$table_name." FOR UPDATE"; 33$s = oci_parse($c, $select_sql); 34oci_execute($s, OCI_DEFAULT); 35 36$row = oci_fetch_array($s); 37 38var_dump($row[0]->export(dirname(__FILE__)."/lob_012.tmp", 3, 10)); 39 40var_dump(file_get_contents(dirname(__FILE__)."/lob_012.tmp")); 41 42@unlink(dirname(__FILE__)."/lob_012.tmp"); 43 44require dirname(__FILE__).'/drop_table.inc'; 45 46echo "Done\n"; 47 48?> 49--EXPECT-- 50int(30) 51bool(true) 52string(10) "t string i" 53Done 54