网站首页  软件下载  游戏下载  源码下载  词典软件  教程攻略

请输入您要查询的源码:

 

源码 route.class.php 最简单轻量的url路由,支持正反向url解析
图标
分类 源码下载-php源码-php其它 php其它
语言 简体中文
大小 6KB
软件类型 国产软件
发布时间
用户评分 3
备案号
官方网址
软件授权 免费软件
操作系统 Windows平台
厂商
下载
介绍

最简单轻量的php url路由,支持正反向解析,如果亲正在组建自己的框架或者工具库可以考虑嚄。仓鼠出品,必优.

[code]
<?php
require_once __DIR__ . '/route.class.php';

function index_init()
{
    error_reporting(E_ALL | E_STRICT);
    header("Content-Type: text/html;charset=utf-8");

    $arr = array(
            '/index.html',
            '/student/index.html',
            '/student/user/index.html',
            '/student/user/role/index///.html',

            '/index.xml',
            '/student/index.xml',
            '/student/user/index.xml',
            '/student/user/role/index///.xml',

            '/index.jsonp',
            '/student/index.jsonp',
            '/student/user/index.jsonp',
            '/student/user/role/index.jsonp',

            '/index.json',
            '/student/index.json',
            '/student/user/index.json',
            '/student/user/role/index.jsonp',

        );

    foreach( $arr as $t )
    {
        Route::parse_url($t);
        prety_printr($_GET);
        $route_key = $_GET['q:route'];
        unset($_GET['q:route']);
        prety_printr( Route::rewrite_url($route_key, $_GET));
    }

    echo __FILE__;
    EXIT;
}


function prety_printr($vars, $label = '', $return = false)
{
    $content = "<pre>\n";
    if ($label != '') {
        $content .= "<strong>{$label} :</strong>\n";
    }
    $content .= htmlspecialchars(print_r($vars, true),ENT_COMPAT | ENT_IGNORE);
    $content .= "\n</pre>\n";

    if ($return) { return $content; }
    echo $content;
}

index_init();
[/code]

截图
随便看

 

网盟提供免费网站源码下载(asp源码,php源码,.net源码),源码动态,使用教程和源码评测;为站长推介有价值的源码,为开发者宣传源码作品。

 

Copyright © 2002-2024 cnnbu.com All Rights Reserved
更新时间:2025/4/6 3:01:34