我如何在xampp服务器中安装json?

时间:2010-10-05 06:41:48

标签: json xampp

如何在xampp服务器中安装json?

2 个答案:

答案 0 :(得分:3)

Json是format;你没有安装它,你实现它。


如果你想在你的php网站中使用json格式,那么你可以使用functions扩展名来encode data in a json format

要安装或使用此扩展程序,请参阅installation page;根据您的php版本,您可能已将json扩展已与xampp捆绑在一起。如果你有latest version xampp(windows install),可以直接使用这些方法

答案 1 :(得分:1)

Xampp与Apache,MySQL,PHP,Perl“一起发布”并支持PHP和Perl中的JSON!

Json PHP

Json Perl: JSON::to_json(hash);

简单PHP example from php.net

<?php
$arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);

echo json_encode($arr);
?>

编辑:第二个示例显示了如何将json_encode()一个mysql查询结果:

<?php
$sth = mysql_query("SELECT ...");
$rows = array();
while($r = mysql_fetch_assoc($sth)) {
    $rows[] = $r;
}
print json_encode($rows);
?>

编辑2:然后,您可以使用this stackoverflow question中描述的方法之一将JSON转换为XML。

编辑3:如果要将xml文件保存到光盘,请使用

$myFile = "file.xml";
$fh = fopen($myFile, 'w') or die("can't open file");
$data = x;           // replace x with the xml from your ajax result !!!!!
fwrite($fh, $data);
fclose($fh);