PHP SOAP fread() 动态 POST 大小

发布于 2024-08-04 04:58:27 字数 260 浏览 5 评论 0原文

希望读取 SOAP POST 的文件大小,有什么最佳实践吗?

$data = fopen('php://input','rb');
$content = fread($data,5000);

$dom = new DOMDocument();
$dom->loadXML($content);

是否希望 5000 是动态的,因为每个 SOAP POST 大小都会不同,或者这很重要吗?

使用 fread() 会很棒

Looking to read the file size of the SOAP POST, any best practices?

$data = fopen('php://input','rb');
$content = fread($data,5000);

$dom = new DOMDocument();
$dom->loadXML($content);

Would like the 5000 to be dynamic as each SOAP POST size will be different or does this matter?

Using fread() would be great

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

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

发布评论

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

评论(2

断桥再见 2024-08-11 04:58:27

嗯。如果您可以使用“fread”读取它,我认为您没有理由不能使用“file_get_contents()”读取完全相同的文本。我用过几次,记得我都尝试过。

就“fread”的最佳实践而言,您需要的是可以从 getallheaders() 获取的文件大小。

因此,如果您仍然喜欢使用“fread”,这里是代码。

$data = fopen('php://input','rb');
$Headers = getallheaders();
$CLength  = $Headers['Content-Length'];
$content = fread($data,$CLength);

$dom = new DOMDocument();
$dom->loadXML($content);

上面的代码是自我解释的,因此不需要进一步解释。请注意,如果长度 长于 8192 字节内容将被剪辑。所以你最好检查一下读取长度,看看它是否被剪裁。 (不过,如果您使用“file_get_contents()”,则无需担心)。

希望这有帮助

Umm. If you can read it with 'fread', I see no reason you cannot read EXACT same text with 'file_get_contents()'. I use this a few times and remembering that I've try both.

As far as the best practice for 'fread' goes, what you need is the file size which you can get it from getallheaders().

So, if you still prefer using 'fread' here is the code.

$data = fopen('php://input','rb');
$Headers = getallheaders();
$CLength  = $Headers['Content-Length'];
$content = fread($data,$CLength);

$dom = new DOMDocument();
$dom->loadXML($content);

The code above is self explained so there is no need for further explanation. Just a little bit note that if the length is longer than 8192 bytes the content will be clipped. So you better check the read length to see if it clipped. (You will not need to be worry if you use 'file_get_contents()' though).

Hope this helps

浅暮の光 2024-08-11 04:58:27

您可以尝试以下操作:

$xml = file_get_contents('php://input')

这将获取所有内容,无论数据的长度如何。

You could try the following instead:

$xml = file_get_contents('php://input')

This will get all contents, no matter the length of the data.

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