使用 URL 編碼給定的字串

curl_escape

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

curl_escape使用 URL 編碼給定的字串

說明

curl_escape(resource $ch, string $str): string

該函式使用 URL 根據» RFC 3986編碼給定的字串。

參數

handle

curl_init() 返回的 cURL 控制代碼。

str

需要編碼的字串

返回值

返回編碼后的字串 或者在失敗時返回 false

範例

示例 #1 curl_escape() 示例

<?php
// 建立一個 curl 控制代碼
$ch curl_init();

// 把編碼后的字串當做一個 GET 參數
$location curl_escape($ch'Hofbräuhaus / München');
// 結果: Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen

// 用編碼好的字串組裝一個 URL
$url "http://example.com/add_location.php?location={$location}";
// 結果: http://example.com/add_location.php?location=Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen

// 發送 HTTP 請求並關閉控制代碼
curl_setopt($chCURLOPT_URL$url);
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
curl_exec($ch);
curl_close($ch);
?>

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *