在PHP中将数据传递给file_get_contents()

时间:2014-01-29 21:51:37

标签: php echo file-get-contents

我在这方面遇到了一些问题:

我必须制作一些显示如下的报告:

enter image description here

如您所见, .php 通过url接收用户ID(idusuario=14)。

现在,我有另一个 .php ,代码如下:

<?php

    $idusuario = 14;

    $postdata = http_build_query(
        array(
            'idusuario' => $idusuario
        )
    );

    $opts = array('http' =>
        array(
            'method'  => 'GET',
            'header'  => 'Content-type: application/x-www-form-urlencoded',
            'content' => $postdata
        )
    );

    $context  = stream_context_create($opts);

    $result = file_get_contents('ContentEnvio.php', false, $context );

    echo $result;

?>

当我echo $result时,应该如上图所示?

结果如下:

enter image description here

0 个答案:

没有答案