在php中输出一个json文件响应而不是一个echo响应

时间:2015-04-02 14:35:56

标签: php json response

下面的代码,在php标签内,回显{" status":200," status_message":"详细信息输入数据库",&#34 ; data":121}到提交数据的网页顶部。一切都好! 但是我怎么能把它作为一个' any.json'文件。 我经常看到这些出现在Windows 7等网页的底部。 我试过添加

$fp = fopen('results.json', 'w');
fwrite($fp, json_encode($response));
fclose($fp);

我也尝试了fwrite(" yourjson.json",json_encode($ response));

但似乎没有任何事情发生(我在执行此操作时注释掉了echo $响应)。如果您有任何建议,请非常感谢,谢谢。

<?php
    if (isset($_POST['submit']))
    {
    $fields = array(
        'name'=>$_POST['name'],
        'email'=>$_POST['email'],
        'password'=>$_POST['password'],
        'status'=>$_POST['status']
        );
    $postvars='';
    $sep='';
    foreach($fields as $key=>$value)
    {
        $postvars.= $sep.urlencode($key).'='.urlencode($value);
        $sep='&';
    }
    $url = "http://www.anywebpage.com/rest/index.php";
    $client = curl_init($url);
    curl_setopt($client,CURLOPT_POST,count($fields));
    curl_setopt($client, CURLOPT_POSTFIELDS, $postvars);
    curl_setopt($client, CURLOPT_RETURNTRANSFER,true);
    $response = curl_exec($client);
    $result = json_decode($response);
    echo $response;

    curl_close($client);
    }
?>

上面的代码将数据发送到下面的文件中,我也尝试将文件写入代码,但再次无济于事。

<?php
    $page_title = 'Pass_On';

    //process client request (VIA URL)
    header("Content = Type:application/json");
    //include("function.php");

    if (!empty($_POST['name']))
    {
        $name = $_POST['name']; 
        $email = $_POST['email'];
        $password = $_POST['password'];
        $status = $_POST['status'];  
        require_once('mysqli_connect.php');

    $sql = "INSERT INTO usersRest(name, email, password, status) VALUES ( '$name', '$email', '$password', '$status')";
    $r = @mysqli_query ($dbc, $sql);
    //$qur = mysqli_query($dbc, $sql);
        $id = mysqli_insert_id($dbc);   

    deliver_response(200, "details entered in database", $id);

        }
    function deliver_response($status,$status_message,$data)
    {
            header ("HTTP/1.1 $status $status_message");
            $response['status']=$status;
            $response['status_message']=$status_message;
            $response['data']= $data;
            $json_response=json_encode($response);
            echo $json_response;

    }
?>

除响应外,一切都很顺利。 顶级的PHP代码从同一个php文件中的HTML表单中接收它的值。它只是直接表格提交4个值,名称,电子邮件,密码,状态。

谢谢。

1 个答案:

答案 0 :(得分:0)

搜索后我发现这段代码有效。 在文件末尾使用此标题&#39; Pass_On&#39;

注释掉// echo $ json_response; 并添加......以生成一个名为file1.json的文件 它放入此文件的$ json_response变量的内容。

$fp = fopen('file1.json', 'w+');
fwrite($fp, $json_response);
fclose($fp);

然后使用其他代码部分,发送数据的顶部代码块。 在结尾附近注释掉echo $ response并添加以下代码。

$file = 'file1.json';

file_put_contents($file, $response); //getting this variable, $response, correct was important.

header("Content-type: application/json");

header('Content-Disposition: attachment; filename="'.basename($file).'"'); 

header('Content-Length: ' . filesize($file));

readfile($file); 

curl_close($client);

因此数据从发送到数据库,如果输入正确,则会将一个名为file1.json的自动json文件返回到发布站点。

希望有时帮助某人。感谢其他撰稿人的帮助和建议。