简体   繁体   English

将查询结果写入txt文件

[英]Write query result to txt file

The query results come from the oracle how to write to a text file in php.These codes write to html table.I want implement as write text fle.查询结果来自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);

    ?>

You could take the entire result and write it in JSON:您可以获取整个结果并将其写入 JSON:

function save_result($result, $location) {
 $json = json_encode($result); // Convert $result into a json formatted string
 $file = fopen($location, 'w'); // Open the file to write
 fwrite($file, $json); // Write 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;
}

Usage:用法:

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

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM