将php查询结果导出到ascii txt文件

发布于 2024-11-30 00:51:53 字数 108 浏览 2 评论 0原文

我是 PHP 新手,我有一个问题:如何将 php-mysql 查询结果导出到带有预定义空格的 ascii txt 文件中? 我在网络和书籍中进行了搜索,但没有找到具体的解决方案。有人可以帮我吗?提前致谢

I'm a noobie in PHP and I have a problem: how can I export a php-mysql query result into a ascii txt file with pre-definied spaces?
I searched into the web and in my books but I didn't find a specific solution. Could anyone help me, please? Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彻夜缠绵 2024-12-07 00:51:53

您最好阅读有关如何按位写入文本文件的文档。有许多字符集用于存储驱动器上的文档。这取决于您定义的将数据保存在数据库中的字符集,以及您的 php 函数在获取相同数据时是否正在更改字符集。

这是字符集操作的示例(将 iso-8859-1 转换为 utf-8): http://www.php.net/manual/en/function.utf8-decode.php

您可能需要按位读取文件并转换该范围内的所有字符的 ascii 表并清除其他表,但除非您的文档采用除第一个源的 ascii 之外的其他类型,否则您可能会让该文件采用其预定义的字符集。

You better read documents on how text files are bit-written. There are many charset used to memorized documents on your drive. It depends the charset that you've defined saving the data on your database and if your php function is changing the charset when it fetches the same data.

here's an example of charset manipulation (converts iso-8859-1 to utf-8) : http://www.php.net/manual/en/function.utf8-decode.php

you might want read your file bit-wised and converts all the chars that are in the range of the ascii table and sweep off the others, but unless your document is in an other type than ascii to the first origin, you probably let the file in its predefined charset.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文