curl_escape
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
curl_escape — 使用 URL 編碼給定的字串
參數
-
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($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
curl_close($ch);
?>
參見
- curl_unescape() - 解碼給定的 URL 編碼的字串
- urlencode() - 編碼 URL 字串
- rawurlencode() - 按照 RFC 3986 對 URL 進行編碼
- » RFC 3986