ArticlesController.php
817 字节
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: pl125 <xskjs888@163.com>
// +----------------------------------------------------------------------
namespace api\demo\controller;
use cmf\controller\RestBaseController;
class ArticlesController extends RestBaseController
{
public function index()
{
$articles = [
['title' => 'article title1'],
['title' => 'article title2'],
];
$this->success('请求成功!', ['articles' => $articles]);
}
}