在没有'json_decode'或PEAR的'Services_JSON'的情况下从PHP解析JSON

时间:2011-01-20 22:46:17

标签: php json

我正在学校为我的数据挖掘类开发一个项目,我想使用stackoverflow API来获取原始数据。我正在看一个关于使用PHP访问它的一个小介绍教程,第一个代码示例根本不起作用。罪魁祸首是json_decode函数。学校服务器上安装的PHP版本为5.1.6,该功能仅存在> = 5.2。在这里搜索我发现使用梨,但学校的PHP配置了'--without-pear'

解决这些限制的最佳选择是什么?我宁愿不必完全切换到单独的语言。是否可以用另一种语言调用外部函数?

违规行是

$response = json_decode(http_inflate(file_get_contents($url)));

3 个答案:

答案 0 :(得分:4)

您可以在不使用PEAR安装过程的情况下安装PEAR库。只需从PEAR网站(Services_JSON)下载该文件并手动包含该文件。

答案 1 :(得分:0)

您可以直接从PEAR使用JSON支持,它与其他PEAR库没有依赖关系。我相信你所需要的只是JSON.php

答案 2 :(得分:0)

当我想使用JSON进行编码时,我也处于这种情况,但在服务器上只有PHP v 5.1.6。经过几个小时的尝试,我发现我所要做的只是简单地从我的PHP脚本中包含JSON.php并略微改变我的AJAX功能(最初是从网上得到的 - 而不是我的工作)。

以下是这两个文件,希望它能让人感到有些紧张。

<强> java.js

var request;

function runAjax (JSONString, phpScript, cfunc) {
    if (window.XMLHttpRequest) {
        request = new XMLHttpRequest();
    } else if (window.ActiveXObject) {
        try {
            request = new ActiveXObject("Msxml2.XMLHTTP");
        } catch(e) {
            try {
                request = new ActiveXObject("Microsoft.XMLHTTP");
            } catch(e) {
                request = false;
            }
        }
    }
    request.onreadystatechange = cfunc;
    request.open("POST", phpScript);
    request.setRequestHeader("Content-type", "application/json", true);
    request.send(JSONString);
}

function smazVzor (id) {
    var JSONObject = new Object;
    JSONObject.id = id;
    JSONString = JSON.stringify(JSONObject);
    runAjax(JSONString, "./ajax/smaz_vzor.php", function () {
        if (request.readyState == 4) {
            var JSONObject = JSON.parse(request.responseText);
            alert(JSONObject.zprava);
            if (JSONObject.kod == 1) document.location.href = "./index.php";
        }
    });
}

<强> smaz_vzor.php

<?php
    require("../../include/dbconnect.php"); // just some commands for MySQL
    require('../../include/JSON/JSON.php'); // <-- THIS IS IMPORTANT
    $json = new Services_JSON();    // create a new instance of Services_JSON class
    $str_json = file_get_contents('php://input');   // read fiel send by POST method as text
    $decoded = $json->decode($str_json);    // decode JSON string to PHP object

    $sql = "DELETE FROM Obory_vzory WHERE id = '$decoded->id'";
    $response = array();    // create response array
    if (!mysql_query($sql, $pripojeni)) {
        $response['kod'] = 0;
        $response['zprava'] = "Something got wrong.\nError: ".mysql_error();
    } else {
        $response['kod'] = 1;
        $response['zprava'] = "Operation successful.";
    }

    $encoded = $json->encode($response);    // encode array $json to JSON string
    die($encoded);  // send response back to java and end script execution
?>