(PHP 5 >= 5.5.0, PHP 7)
curl_unescape — ��������� URL ������ַ���
$ch
, string $str
) : string�ú������������ URL ������ַ�����
ch
�� curl_init() ���ص� cURL �����
str
��Ҫ����� URL �����ַ���
���ؽ������ַ��� ������ʧ��ʱ���� FALSE
��
Example #1 curl_escape() ʾ��
<?php
// ����һ�� curl ���
$ch = curl_init('http://example.com/redirect.php');
// ���� HTTP ��������ѭ�ض���
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($ch);
// ��ȡ������Ч URL
$effective_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
// ����� "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"
// �رվ��
curl_close($ch);
?>
Note:
curl_unescape() ���Ὣ�Ӻ� (+) ����ɿո� urldecode() �ᡣ