【微擎】ThinkPHP框架开发微擎应用?

ThinkPHP框架开发微擎应用?

TP5.1

微擎中的site.php

/**
 *
 * Class YcModuleSite
 */
class YcModuleSite extends WeModuleSite {

    public function __call($name, $arguments)
    {
        include __DIR__.'/public/index.php';
        exit;
    }
}

ThinkPHP5.1中的index.php

path(dirname(__DIR__) . '/application/')->bind("{$mod}/{$opt}/{$act}")->run()->send();

TP5.0

微擎中的site.php

/**
 *
 * Class YcModuleSite
 */
class YcModuleSite extends WeModuleSite {

    public function __call($name, $arguments)
    {
        include __DIR__.'/public/index.php';
        exit;
    }
}

ThinkPHP5.0中的index.php

send();

你可能感兴趣的:(PHP)