123456789101112131415161718192021222324 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 创客管理
- */
- namespace app\allwin\controller;
- use think\Controller;
- class Test extends Controller{
- public function index(){
- code(json_encode(array (
- 'productName' => '售后宝',
- 'isTrial' => '1',
- 'spec' => '旗舰版',
- 'cycle' => '7天',
- 'timeSpan' => '7',
- 'timeUnit' => 'd',
- )));
- }
- }
|