keywords.al
来自「ARM上的如果你对底层感兴趣」· AL 代码 · 共 23 行
AL
23 行
# NOTE: Derived from blib\lib\URI\URL\http.pm.
# Changes made here will be lost when autosplit again.
# See AutoSplit.pm.
package URI::URL::http;
#line 16 "blib\lib\URI\URL\http.pm (autosplit into blib\lib\auto/URI\URL\http/keywords.al)"
# Handle ...?dog+bones type of query
sub keywords {
my $self = shift;
$old = $self->{'query'};
if (@_) {
# Try to set query string
$self->equery(join('+', map { URI::Escape::uri_escape($_, $URI::URL::reserved) } @_));
}
return if !defined($old) || !defined(wantarray);
Carp::croak("Query is not keywords") if $old =~ /=/;
map { URI::Escape::uri_unescape($_) } split(/\+/, $old);
}
# end of URI::URL::http::keywords
1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?