From professional translators, enterprises, web pages and freely available translation repositories.
예 1. rawurlencode() example 1
例 2 rawurlencode() の例2
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
see also rawurlencode(), urldecode(), urlencode().
rawurlencode(), urldecode(), urlencode() も参照下さい。
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
see also urldecode(), htmlentities(), rawurldecode(), rawurlencode().
urldecode(), htmlentities(), rawurldecode(), rawurlencode() も参考にしてください。
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
returns a string in which all non-alphanumeric characters except -_. have been replaced with a percent (%) sign followed by two hex digits and spaces encoded as plus (+) signs. it is encoded the same way that the posted data from a www form is encoded, that is the same way as in application/x-www-form-urlencoded media type. this differs from the rfc1738 encoding (see rawurlencode()) in that for historical reasons, spaces are encoded as plus (+) signs. this function is convenient when encoding a string to be used in a query part of an url, as a convenient way to pass variables to the next page:
-_. を除くすべての非英数文字が、%記号 (% )に続く二桁の数字で置き換えられ、 空白は+記号( + )にエンコードされます。 同様の方法で、wwwのフォームからポストされたデータはエンコード され、 application/x-www-form-urlencoded メディア型も同様です。rfc1738エンコード( rawurlencode() を参照してください)との 違いは、歴史的な理由で、空白が+記号にエンコードされることです。 本関数は、urlの問い合わせ部分に使用する文字列のエンコードや 次のページへ変数を渡すのに便利です。
Last Update: 2011-10-24
Usage Frequency: 1
Quality: