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: | 2024-11-20 03:01:09 |
Package Statistics | |
---|---|
Total Downloads: | 1,359 |
Monthly Downloads: | 20 |
Daily Downloads: | 2 |
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 目录下测试文件。