URI-1.35 > URI::URL
URI-1.35
Other versions:
URI-1.54

名前

URI::URL - Uniform Resource Locators

URI::URL - 統一資源位置指定子

概要

 $u1 = URI::URL->new($str, $base);
 $u2 = $u1->abs;

説明

This module is provided for backwards compatibility with modules that depend on the interface provided by the URI::URL class that used to be distributed with the libwww-perl library.

このモジュールは、libwww-perl ライブラリで配布されていた URI::URL クラスによって提供されていたインターフェースに 依存しているモジュールとの後方互換性のために提供されています。

The following differences exist compared to the URI class interface:

URI クラスインターフェースと比べて、次のような違いがあります:

  • The URI::URL module exports the url() function as an alternate constructor interface.

    URI::URL モジュールは、代替コンストラクタインターフェースとして url() 関数をエクスポートします。

  • The constructor takes an optional $base argument. The URI::URL class is a subclass of URI::WithBase.

    コンストラクタはオプションの $base 引数を取ります。 URI::URL クラスは URI::WithBase のサブクラスです。

  • The URI::URL->newlocal class method is the same as URI::file->new_abs.

    URI::URL->newlocal クラスメソッドは URI::file->new_abs と同じです。

  • URI::URL::strict(1)

  • $url->print_on method

    $url->print_on メソッド

  • $url->crack method

    $url->crack メソッド

  • $url->full_path: same as ($uri->abs_path || "/")

    $url->full_path: ($uri->abs_path || "/") と同じ

  • $url->netloc: same as $uri->authority

    $url->netloc: $uri->authority と同じ

  • $url->epath, $url->equery: same as $uri->path, $uri->query

    $url->epath, $url->equery: $uri->path, $uri->query と同じ

  • $url->path and $url->query pass unescaped strings.

    $url->path と $url->query はエスケープされない文字列を渡します。

  • $url->path_components: same as $uri->path_segments (if you don't consider path segment parameters)

    $url->path_components: $uri->path_segments と同じ (パスセグメント引数を考慮しない場合)

  • $url->params and $url->eparams methods

    $url->params と $url->eparams メソッド

  • $url->base method. See URI::WithBase.

    $url->base メソッド。 URI::WithBase を参照。

  • $url->abs and $url->rel have an optional $base argument. See URI::WithBase.

    $url->abs と $url->rel はオプションの $base 引数があります。 URI::WithBase を参照。

  • $url->frag: same as $uri->fragment

    $url->frag: $uri->fragment と同じ

  • $url->keywords: same as $uri->query_keywords

    $url->keywords: $uri->query_keywords と同じ

  • $url->localpath and friends map to $uri->file.

    $url->localpath と類似品は $uri->file にマッピングする。

  • $url->address and $url->encoded822addr: same as $uri->to for mailto URI

    $url->address と $url->encoded822addr: mailto URI の $uri->to と同じ

  • $url->groupart method for news URI

    news URI のための $url->groupart メソッド

  • $url->article: same as $uri->message

    $url->article: $uri->message と同じ

SEE ALSO

URI, URI::WithBase

コピーライト

Copyright 1998-2000 Gisle Aas.