jaeger / querylist-absolute-url
QueryList Plugin: Converting relative urls to absolute.QueryList插件:转换URL相对路径到绝对路径.
Installs: 5 017
Dependents: 3
Suggesters: 0
Security: 0
Stars: 8
Watchers: 3
Forks: 6
Open Issues: 1
Requires
- php: >=7.0
- pguardiario/phpuri: ^1.0
Requires (Dev)
- jaeger/querylist: dev-master
This package is auto-updated.
Last update: 2024-10-09 17:27:44 UTC
README
QueryList Plugin: Converting relative urls to absolute.
QueryList插件:转换URL相对路径到绝对路径.
QueryList:https://github.com/jae-jae/QueryList
Installation for QueryList4
composer require jaeger/querylist-absolute-url
API
- absoluteUrl($baseUrl): Convert Page All Url to Absolute Url,return QueryList
- absoluteUrlHelper($baseUrl,$relativeUrl): Convert Helper Function,return string
Installation options
QueryList::use(AbsoluteUrl::class,$opt1,$opt2)
- $opt1:
absoluteUrl
function alias. - $opt2:
absoluteUrlHelper
function alias.
Usage
- Installation Plugin
use QL\QueryList; use QL\Ext\AbsoluteUrl; $ql = QueryList::getInstance(); $ql->use(AbsoluteUrl::class); //or Custom function name $ql->use(AbsoluteUrl::class,'absoluteUrl','absoluteUrlHelper');
- Convert All Link
$data = $ql->get('https://toutiao.io/') ->absoluteUrl('https://toutiao.io/') ->find('a')->attrs('href'); print_r($data);
Out:
Array
(
[0] => https://toutiao.io/
[1] => https://toutiao.io/explore
[2] => https://toutiao.io/posts/hot/7
[3] => https://toutiao.io/contribute
[4] => https://toutiao.io/account/subscriptions
//....
)
- Convert Helper
$data = $ql->rules([ 'link' => ['a','href'] ])->get('https://toutiao.io/')->query()->getData(function ($item) use($ql){ $item['link'] = $ql->absoluteUrlHelper('https://toutiao.io/',$item['link']); return $item; }); print_r($data);
Out:
Array
(
[0] => Array
(
[link] => https://toutiao.io/
)
[1] => Array
(
[link] => https://toutiao.io/explore
)
[2] => Array
(
[link] => https://toutiao.io/posts/hot/7
)
[3] => Array
(
[link] => https://toutiao.io/contribute
)
[4] => Array
(
[link] => https://toutiao.io/account/subscriptions
)
//...
)