PHP curl_unescape函數(shù)
PHP curl_unescape函數(shù)
(PHP 5 >= 5.5.0)
curl_unescape — 解碼經(jīng)過(guò)URL編碼的字符串。
說(shuō)明
string curl_unescape ( resource $ch , string $str )
解碼經(jīng)過(guò)URL編碼的字符串。
注意: curl_unescape() 不能解碼加號(hào) (+) 為空格, urldecode() 可以。
參數(shù)
ch
由 curl_init() 返回的 cURL 句柄。
str
URL 編碼的字符串
返回值
返回解碼字符串或者在失敗時(shí)返回 FALSE。
實(shí)例
<?php // 創(chuàng)建一個(gè)curl句柄 $ch = curl_init('http://example.com/redirect.php'); // 發(fā)送 HTTP 請(qǐng)求 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_exec($ch); // 獲得最后一個(gè)有效的URL $effective_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL); // ie. "http://example.com/show_location.php?loc=M%C3%BCnchen" // 解碼URL $effective_url_decoded = curl_unescape($ch, $effective_url); // "http://example.com/show_location.php?loc=München" // 關(guān)閉句柄 curl_close($ch); ?>
相關(guān)文章
- PHP 類型比較
- PHP If Else 語(yǔ)句
- PHP 文件上傳
- PHP 異常處理
- PHP array_count_values() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP compact() 函數(shù)
- PHP key() 函數(shù)
- PHP krsort() 函數(shù)
- PHP ksort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP 雜項(xiàng) 函數(shù)