| Package Data | |
|---|---|
| Maintainer Username: | seffeng | 
| Maintainer Contact: | save.zxf@gmail.com (seffeng) | 
| Package Create Date: | 2022-08-25 | 
| Package Last Update: | 2024-07-22 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-31 03:03:52 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 1,534 | 
| Monthly Downloads: | 49 | 
| Daily Downloads: | 5 | 
| Total Stars: | 0 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
# 安装
$ composer require seffeng/url-helper
|---src
|   |   Url.php
|   |---Traits
|           UrlTrait.php
|---tests
|       UrlTest.php
/**
 * TestController.php
 * 示例
 */
namespace App\Http\Controllers;
use Seffeng\UrlHelper\Url;
class TestController extends Controller
{
    public function index()
    {
        $url = 'https://www.1kmi.com/view/2.php';
        print_r(Url::parseUrl($url));
    }
}
1、更多示例请参考 tests 目录下测试文件。