nyholm/append-query-string
最新稳定版本:1.0.0
Composer 安装命令:
composer require nyholm/append-query-string
包简介
A simple function that lets you add a query string to an existing URL
README 文档
README
If you have a unknown URL and want to add a query string to it, this package is what you are looking for.
Install
composer require nyholm/append-query-string
Usage
$url = 'https://nyholm.tech?example=yes'; $queryString = http_build_query(['foo'=>'bar']); $result = append_query_string($url, $queryString); echo $result; // https://nyholm.tech?example=yes&foo=bar
Yes, this is pretty much as writing:
$result = $url . $queryString;
But it will support if URL has query string or not. It will also if a URL hash fragment is used.
Modes
There are three different modes you can use with append_query_string.
APPEND_QUERY_STRING_IGNORE_DUPLICATE(default)APPEND_QUERY_STRING_REPLACE_DUPLICATEAPPEND_QUERY_STRING_SKIP_DUPLICATE
They are easiest explained with examples.
APPEND_QUERY_STRING_IGNORE_DUPLICATE
$url = 'https://nyholm.tech?foo=x&a=1'; $queryString = http_build_query(['a'=>'2']); $result = append_query_string($url, $queryString, APPEND_QUERY_STRING_IGNORE_DUPLICATE); echo $result; // https://nyholm.tech?foo=x&a=1&a=2
APPEND_QUERY_STRING_REPLACE_DUPLICATE
$url = 'https://nyholm.tech?foo=x&a=1'; $queryString = http_build_query(['a'=>'2']); $result = append_query_string($url, $queryString, APPEND_QUERY_STRING_REPLACE_DUPLICATE); echo $result; // https://nyholm.tech?foo=x&a=2
APPEND_QUERY_STRING_SKIP_DUPLICATE
$url = 'https://nyholm.tech?foo=x&a=1'; $queryString = http_build_query(['a'=>'2']); $result = append_query_string($url, $queryString, APPEND_QUERY_STRING_SKIP_DUPLICATE); echo $result; // https://nyholm.tech?foo=x&a=1
统计信息
- 总下载量: 281.5k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 20
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-28