本文整理汇总了PHP中Ajax::json_encode_jsfunc方法的典型用法代码示例。如果您正苦于以下问题:PHP Ajax::json_encode_jsfunc方法的具体用法?PHP Ajax::json_encode_jsfunc怎么用?PHP Ajax::json_encode_jsfunc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Ajax
的用法示例。
在下文中一共展示了Ajax::json_encode_jsfunc方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getMainJS
/**
* Get main functionalities for this plot
* @return string
*/
private function getMainJS()
{
return 'RunalyzePlot.addPlot("' . $this->cssID . '", ' . json_encode($this->Data) . ', ' . Ajax::json_encode_jsfunc($this->Options) . ', ' . json_encode($this->PlotOptions) . ', ' . json_encode($this->Annotations) . ');';
}
示例2: testJSONencode
public function testJSONencode()
{
$this->assertEquals('{' . '"int":1,' . '"float":3.14,' . '"bool":true,' . '"null":null,' . '"string":"foo",' . '"func1":function test1() { return 1; },' . '"func2":function test2() { return 2; },' . '"func3":function test3() { return 3; }' . '}', Ajax::json_encode_jsfunc(array('int' => 1, 'float' => 3.14, 'bool' => true, 'null' => null, 'string' => 'foo', 'func1' => 'function test1() { return 1; }', 'func2' => 'function test2() { return 2; }', 'func3' => 'function test3() { return 3; }')));
}