123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- $_namespaces = 'game app';
- $_return_arr = [
- 'default choice' => 'all',
- 'choose the state' => 'choose state',
- 'choose a game' => 'choose game',
- 'all tags' => 'all tags',
- 'game tags' => 'game tags',
- 'current status' => 'current status',
- 'game name' => 'game name',
- 'game platform' => 'platform',
- 'choose a platform' => 'choose platform',
- 'select the time interval' => 'select time interval',
- 'start time' => 'start time',
- 'end time' => 'end time',
- 'game management' => 'game management',
- 'search button' => 'search',
- 'sort button' => 'sort',
- 'online msg' => 'sure to online',
- 'offline msg' => 'sure to offline',
- 'set online' => 'online',
- 'set offline' => 'offline',
- 'set hot msg' => 'sure set hot',
- 'off hot msg' => 'sure off hot',
- 'set hot' => 'set hot',
- 'off hot' => 'off hot',
- 'set free msg' => 'sure free',
- 'off free msg' => 'sure off free',
- 'set free' => 'set free',
- 'off free' => 'off free',
- 'set new msg' => 'sure set new',
- 'off new msg' => 'sure off new',
- 'set new' => 'set new',
- 'off new' => 'off new',
- 'set recommend' => 'set recommend',
- 'off recommend' => 'off recommend',
- 'set recommend msg' => 'sure recommend',
- 'off recommend msg' => 'sure off recommend',
- 'list sort show' => 'sort',
- 'list game name show' => 'game name(icon)',
- 'list game tags show' => 'game tags',
- 'list game platform' => 'game platform',
- 'list game line type' => 'line type',
- 'list game is hot' => 'is hot',
- 'list game is new' => 'is new',
- 'list game recommend' => 'recommend',
- 'list game welfare' => 'welfare',
- 'list game create time' => 'create time',
- 'list game status' => 'status',
- 'list game action' => 'action',
- 'list game edit' => 'edit',
- 'param lost' => 'param lost',
- 'offline success' => 'offline success',
- 'online success' => 'online success',
- 'set hot success' => 'set hot success',
- 'off hot success' => 'off hot success',
- 'set recommend success' => 'set recommend success',
- 'off recommend success' => 'off recommend success',
- 'offline fail' => 'offline fail',
- 'online fail' => 'online fail',
- 'set hot fail' => 'set hot fail',
- 'off hot fail' => 'off hot fail',
- 'set recommend fail' => 'set recommend fail',
- 'off recommend fail' => 'off recommend fail',
- ];
- $_re = [];
- foreach ($_return_arr as $k => $v) {
- $_re[$_namespaces.' '.$k] = $v;
- }
- return $_re;
|