将查询结果写入txt文件

时间:2016-05-11 15:52:44

标签: php sql oracle

查询结果来自oracle如何写入php中的文本文件。这些代码写入html表。我希望实现为写文本文件。

<?php

    $conn = oci_connect('hr', 'welcome', 'localhost/XE');
    if (!$conn) {
        $e = oci_error();
        trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
    }

    $stid = oci_parse($conn, 'SELECT POSTAL_CODE, CITY FROM locations WHERE ROWNUM < 3');
    oci_execute($stid);

    $nrows = oci_fetch_all($stid, $res);

    foreach ($res as $col) {
        echo "<tr>\n";
        foreach ($col as $item) {
            echo "    <td>".($item !== null ? htmlentities($item, ENT_QUOTES) : "")."</td>\n";
        }
        echo "</tr>\n";
    }
    echo "</table>\n";

    oci_free_statement($stid);
    oci_close($conn);

    ?>

1 个答案:

答案 0 :(得分:2)

您可以获取整个结果并将其写入json

function save_result($result, $location) {
 $json = json_encode($result); //Convert $result into a json formated string
 $file = fopen($location, 'w'); //Open the file to write
 fwrite($file, $json); //Wrtie to file
 fclose($file); //Close up
}
function get_result($result, $location) {
 $file = fopen($location, 'r'); //Open the file to read
 $read = json_decode(fread($file, filesize($location))); //Decode json formated string into an asoc array
 fclose($location); //Close up
 return $read;
}

用法:

save_result($result, 'hello.txt'); //Save

get_result('hello.txt'); //Read