当前位置: 首页>>代码示例>>PHP>>正文


PHP Ajax::json_encode_jsfunc方法代码示例

本文整理汇总了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) . ');';
 }
开发者ID:rob-st,项目名称:Runalyze,代码行数:8,代码来源:class.Plot.php

示例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; }')));
 }
开发者ID:9x,项目名称:Runalyze,代码行数:4,代码来源:class.AjaxTest.php


注:本文中的Ajax::json_encode_jsfunc方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。