Test.php 589 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 创客管理
  7. */
  8. namespace app\allwin\controller;
  9. use think\Controller;
  10. class Test extends Controller{
  11. public function index(){
  12. code(json_encode(array (
  13. 'productName' => '售后宝',
  14. 'isTrial' => '1',
  15. 'spec' => '旗舰版',
  16. 'cycle' => '7天',
  17. 'timeSpan' => '7',
  18. 'timeUnit' => 'd',
  19. )));
  20. }
  21. }