keywords.al

来自「美国CMU大学开发的操作系统健壮性评测软件」· AL 代码 · 共 19 行

AL
19
字号
# NOTE: Derived from ./blib/lib/URI/URL/http.pm.  Changes made here will be lost.package URI::URL::http;# Handle ...?dog+bones type of querysub 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);}1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?