prob/rewrite-helper

用于mod_rewrite的URL路径库

dev-master 2016-08-25 02:44 UTC

This package is not auto-updated.

Last update: 2024-09-26 03:11:18 UTC


README

用于mod_rewrite的URL路径库

Build Status codecov

用法

基本用法

<?php

use Prob\Rewrite\Url;

$url = new Url();
$url->setSite('http://somesite.com');
$url->setDispatcher('index.php');
$url->setPath('/post/56');

echo $url->parse();         // http://somesite.com/post/56
echo $url->parse(false);    // http://somesite.com/index.php/post/56