Sign in

colleague / study-project · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • study-project
  • trunk
  • Swoole
  • Cli
  • Controller
  • IndexController.class.php
  • [Swoole 集成 ThinkPHP 3.2]
    48b314ba
    luoyanshou authored
    2019-02-13 19:01:09 +0800  
    Browse Code »
IndexController.class.php 270 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php
/**
 * Created by PhpStorm.
 * User: luoys
 * Date: 2019/2/13
 * Time: 17:29
 */

namespace Cli\Controller;

class IndexController
{
    public function index()
    {
        print_r(C('MODULE_DENY_LIST'));
        //echo "Swoole 服务端已启动。 \n";
    }
}