base.al
来自「ARM上的如果你对底层感兴趣」· AL 代码 · 共 33 行
AL
33 行
# NOTE: Derived from blib\lib\URI\URL.pm.
# Changes made here will be lost when autosplit again.
# See AutoSplit.pm.
package URI::URL;
#line 270 "blib\lib\URI\URL.pm (autosplit into blib\lib\auto/URI\URL/base.al)"
# Access some attributes of a URL object:
sub base {
my $self = shift;
my $base = $self->{'_base'};
if (@_) { # set
my $new_base = shift;
$new_base = $new_base->abs if ref($new_base); # unsure absoluteness
$self->{_base} = $new_base;
}
return unless defined wantarray;
# The base attribute supports 'lazy' conversion from URL strings
# to URL objects. Strings may be stored but when a string is
# fetched it will automatically be converted to a URL object.
# The main benefit is to make it much cheaper to say:
# new URI::URL $random_url_string, 'http:'
if (defined($base) && !ref($base)) {
$base = new URI::URL $base;
$self->_elem('_base', $base); # set new object
}
$base;
}
# end of URI::URL::base
1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?