我曾尝试安装php5-mod-json,但它没有帮助。我更喜欢没有任何其他框架的解决方案。我正在运行的PHP版本是5.4.5我还在使用nginx和OpenWRT
提前谢谢。
答案 0 :(得分:1)
我尝试安装php5-mod-json
。它对我来说很好。
opkg install php5-mod-json
如果它不适合您,则需要在包列表中添加网址http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/oldpackages
。
// File content 'index.php'
echo json_encode(array('ok'));
测试
root@openWRT:/www/html# php-cli index.php
["ok"]