使用PHP自定义JSON编码

时间:2015-05-07 17:47:36

标签: javascript php json

我的PHP数组看起来像:

$columnDefs = array();

$column = new StdClass();
$column->target = array(0);
$column->orderable = false;
$column->searchable = false;
$column->render = 'function(id){
    return \'<input type="checkbox" value="\' + id + \'" />\';
}';

$columnDefs[] = $coluna;

我想用某种JSON对它进行编码,以便在JavaScript中使用它。结果应如下所示:

[
    {
        "target": [0],
        "orderable": false,
        "searchable": false,
        "render": function(id){
            return '<input type="checkbox" value="' + id + '" />';
        }
    }
]

问题是json_encode() PHP函数正在引用&#34; render&#34;领域。 有没有办法避免这种情况?

0 个答案:

没有答案