我无法通过curl看到我发布的数据?

发布于 2024-12-10 19:54:41 字数 862 浏览 0 评论 0原文

我是 php 的新手,curl 我编写了一个小的 mediawiki 扩展来发送最近的更改。问题是何时发送此数据,我尝试将其写入文件中,但“1”只是我尝试使用 var_dump 出现的内容,但没有更改我的发送者代码是:

$wgHooks['RecentChange_save'][] = 'sendto';
function sendto($recentChange){
    $serialized_data=serialize($recentChange);
    $con=curl_init();
    curl_setopt( $con, CURLOPT_HEADER, true );
    curl_setopt($con,CURLOPT_URL,"http://localhost/test.php");
    curl_setopt($ch,CURLOPT_POST,true);
    curl_setopt($con,CURLOPT_POSTFIELDS,"data={$serialized_data}");
    $result=curl_exec($con);
    if($result){
        return true ;
    }   
    else 
     return false ;
    curl_close($con);
}

另一个代码是(哪个接收):

 $a = unserialize($_POST['data']);
 $d=fopen("log.txt","w");
 fwrite($d,print_r($a));//only "1" is written
 fclose($d);

我认为这是一个愚蠢的问题,但我陷入困境并需要帮助。

谢谢

i'm just new in php , curl i wrote a small mediawiki extension that send the recent change . the problem is when is send this data i try to write it in a file but "1" is only what appear i tried to use var_dump but no changes my sender code is :

$wgHooks['RecentChange_save'][] = 'sendto';
function sendto($recentChange){
    $serialized_data=serialize($recentChange);
    $con=curl_init();
    curl_setopt( $con, CURLOPT_HEADER, true );
    curl_setopt($con,CURLOPT_URL,"http://localhost/test.php");
    curl_setopt($ch,CURLOPT_POST,true);
    curl_setopt($con,CURLOPT_POSTFIELDS,"data={$serialized_data}");
    $result=curl_exec($con);
    if($result){
        return true ;
    }   
    else 
     return false ;
    curl_close($con);
}

and the another code is (which recive):

 $a = unserialize($_POST['data']);
 $d=fopen("log.txt","w");
 fwrite($d,print_r($a));//only "1" is written
 fclose($d);

i think it's a silly question but i get stuck and need help .

thank you

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

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

发布评论

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

评论(1

倾城泪 2024-12-17 19:54:41

而不是

fwrite($d,print_r($a));

尝试

fwrite($d,print_r($a, true));

通过传递 true 作为第二个参数,而是指示 print_r 捕获(即返回)输出而不是打印它。

或者,您可以使用 var_export($a, true)而不是 print_r() (用于不同的表示;我只是提到它,因为您最初尝试使用 var_dump())。

Instead of

fwrite($d,print_r($a));

try

fwrite($d,print_r($a, true));

By passing true as the second argument you instruct print_r to capture (i.e. return) the output instead of printing it.

Alternatively, you could use var_export($a, true) instead of print_r() (for a different representation; I only mention it because you were trying to use var_dump() initially).

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