123456789101112131415161718192021222324 |
- <?php
- 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',
- )));
- }
- }
|