gpt4 book ai didi

PHP-curl 打印结果而不是返回它

转载 作者:行者123 更新时间:2023-12-05 01:01:01 24 4
gpt4 key购买 nike

所以我的问题是我正在向网站发送 curl 请求并且它总是打印 HTML 响应,例如:

<html><header>Example</header></html>

这就是我执行 curl 的方式:

$output = curl_exec($ch)

我没有回显 $output 但它不断地一遍又一遍地返回值。

最佳答案

您需要将 CURLOPT_RETURNTRANSFER 设置为 true:

CURLOPT_RETURNTRANSFER: TRUE to return the transfer as a string of the return value of curl_exec() instead of outputting it out directly.

您可以使用 curl_setopt 来执行此操作(以上来自此文档的引用):

curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true )

关于PHP-curl 打印结果而不是返回它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46877153/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com