1234567891011121314151617181920 |
- <?php
- // 文章列表
- return [
- [
- 'id' => 1,
- 'title' => 'Think Angular 手册地址',
- 'content' => '手册地址: <a href="http://www.kancloud.cn/shuai/php-angular">http://www.kancloud.cn/shuai/php-angular</a>',
- ],
- [
- 'id' => 1,
- 'title' => 'ThinkPHP V5 完全手册地址',
- 'content' => '手册地址: <a href="http://www.kancloud.cn/manual/thinkphp5">http://www.kancloud.cn/manual/thinkphp5</a>',
- ],
- [
- 'id' => 1,
- 'title' => '看云文档托管平台',
- 'content' => '地址: <a href="http://www.kancloud.cn/">http://www.kancloud.cn/</a>',
- ],
- ];
|