12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- return array (
- 1 =>
- array (
- 'id' => 1,
- 'type' => 1,
- 'num' => 5,
- 'des' => '完成5次游戏',
- 'huoyue' => 20,
- ),
- 2 =>
- array (
- 'id' => 2,
- 'type' => 2,
- 'num' => 1000,
- 'des' => '单次游戏获得1000分',
- 'huoyue' => 20,
- ),
- 3 =>
- array (
- 'id' => 3,
- 'type' => 5,
- 'num' => 10000,
- 'des' => '今日累计获得10000分',
- 'huoyue' => 20,
- ),
- 4 =>
- array (
- 'id' => 4,
- 'type' => 3,
- 'num' => 2,
- 'des' => '完成2次抽奖',
- 'huoyue' => 20,
- ),
- 5 =>
- array (
- 'id' => 5,
- 'type' => 4,
- 'num' => 3,
- 'des' => '发送3次分享',
- 'huoyue' => 20,
- ),
- );
|