php 不根据url请求控制器,PHP url的pathinfo模式加载不同控制器的简单实现

使用自动加载和解析url的参数,实现调用到不同的控制器,实现了pathinfo模式和普通的url模式

文件结构:

|--Controller

|--Index

|--Index.php

|--Application.php

Application.php

class Application{

public static function main(){

header("content-type:text/html;charset=utf-8");

self::register();

self::router();

}

public static function register(){

spl_autoload_register("self::loadClass");

}

public static function loadClass($class){

$class=str_replace('\\', '/', $class);

$class="./".$class.".php";

require_once $class;

}

public static function router(){

if(isset($_SERVER['PATH_INFO'])){

$pathinfo=array_filter(explode("/", $_SERVER['PATH_INFO']));

for($i=1;$i<=count($pathinfo);$i++){

$key=isset($pathinfo[$i]) ? $pathinfo[$i] : '';

$value=isset($pathinfo[$i+1]) ? $pathinfo[$i+1] :"";

switch ($i) {

case 1:

$_GET['m']=ucfirst($key);

break;

case 2:

$_GET['c']=ucfirst($key);

break;

case 3:

$_GET['a']=$key;

break;

default:

if($i>3){

if($i%2==0){

$_GET[$key]=$value;

}

}

break;

}

}

}

$_GET['m']=!empty($_GET['m']) ? ucfirst($_GET['m']) : 'Index';

$_GET['c']=!empty($_GET['c']) ? ucfirst($_GET['c']) : 'Index';

$_GET['a']=!empty($_GET['a']) ? $_GET['a'] : 'index';

$class="\\Controller\\{$_GET['m']}\\{$_GET['c']}";

$controller=new $class;

$controller->$_GET['a']();

}

}

Application::main();

\Controller\Index\Index.php

namespace Controller\Index;

use Service\User;

class Index{

public function __construct(){

echo "构造方法
";

}

public function index(){

new User();

print_r($_GET);

}

public function login(){

echo "login()";

}

}

效果:

b12d3c0338878d6449175e02fa04497c.png

以上这篇PHP url的pathinfo模式加载不同控制器的简单实现就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值