Manual:Urlencoding/ja

This page is a translated version of the page Manual:Urlencoding and the translation is 60% complete.

Urlencoding is required in a number of situations. For example, API tokens need to be urlencoded or they will be rejected as invalid.

ウィキテキスト

You can URL encode a string from the wikitext using this magic word :

{{urlencode: VERY LONG EXAMPLE & SOMETHING }}

結果:

VERY+LONG+EXAMPLE+%26+SOMETHING

PHP

Settings headers

Typical code for setting headers, e.g. for API:編集 , would be:

curl_setopt( $this->curl, CURLOPT_HTTPHEADER, array( 'Content-Type: application/x-www-form-urlencoded' ) );

関連項目