GZ 使用 PHP 压缩 XML 站点地图文件

发布于 2024-10-21 20:27:51 字数 209 浏览 3 评论 0原文

我有一个 PHP 脚本,它使用 fopen()fwrite() 从我的网站数据库生成动态 PHP 站点地图到 xml 文件。

如何在编写文件时使用 GZ 动态压缩该文件?

我尝试将通过 gzcompress() 运行的字符串写入文件并将其重命名为“.xml.gz”,但它似乎不是该文件它正在创建一个来源丰富的档案。

I have a PHP script that generates a dynamic PHP sitemap from my site's database to an xml file using fopen() and fwrite().

How can I compress this file using GZ compression dynamically as I write it?

I tried fwrite()-ing strings that I ran through gzcompress() into the file and renaming it ".xml.gz", but it doesn't seem the file it;s creating is a well-fromed archive.

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

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

发布评论

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

评论(2

樱娆 2024-10-28 20:27:52

不使用 fopen 和 fwrite,而是 gzopen()gzwrite() 应该执行以下操作给你的伎俩。

来自手册:

# Sample #1 gzwrite() example
<?php
$string = 'Some information to compress';
$gz = gzopen('somefile.gz','w9');
gzwrite($gz, $string);
gzclose($gz);
?>

如果我理解正确的话

Not using fopen and fwrite but gzopen() and gzwrite() should do the trick for you.

From the manual:

# Sample #1 gzwrite() example
<?php
$string = 'Some information to compress';
$gz = gzopen('somefile.gz','w9');
gzwrite($gz, $string);
gzclose($gz);
?>

If i understood correctly

我乃一代侩神 2024-10-28 20:27:52

这是来自 php 网站的一句话,我们都应该牢记在心。

请注意 07-Nov-2010 08:50 仔细阅读 gzwrite() 的描述
小心。如果未指定“length”选项,则输入
在使用魔术引号的系统上,数据将被删除斜杠
已启用。这是压缩时需要了解的重要信息
文件。

http://php.net/manual/en/function.gzwrite.php

this is a quote from the php site that we all should keep in mind.

Take Heed 07-Nov-2010 08:50 Read the description of gzwrite() very
carefully. If the 'length' option is not specified, then the input
data will have slashes stripped on systems where magic quotes are
enabled. This is important information to know when compressing
files.

http://php.net/manual/en/function.gzwrite.php

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