1234567891011121314151617181920212223 |
- <?php
- use app\main\constants\CacheConstants;
- /**
- * Created by PhpStorm.
- * User: Bear
- * Date: 2020/3/6
- * Time: 下午1:49
- */
- class ChapterEndRecommendTest extends TestInit
- {
- public function testInit()
- {
- $book_id = 11000000050;
- // $cacheKey = CacheConstants::getChapterEndRecommendIds($book_id);
- // \app\common\library\Redis::instance()->del($cacheKey);
- $return = \app\main\service\BookService::instance()->getChapterEndRecommendBook($book_id, 15)->data;
- var_dump($return);
- }
- }
|