curl_unescape

(PHP 5 >= 5.5.0, PHP 7)

curl_unescape��������� URL ������ַ���

˵��

curl_unescape ( resource $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($chCURLOPT_FOLLOWLOCATION1);
curl_exec($ch);

// ��ȡ������Ч URL
$effective_url curl_getinfo($chCURLINFO_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() �ᡣ

�μ�

  • curl_escape() - ʹ�� URL ����������ַ���
  • urlencode() - ���� URL �ַ���
  • urldecode() - �����ѱ���� URL �ַ���
  • rawurlencode() - ���� RFC 3986 �� URL ���б���
  • rawurldecode() - ���ѱ���� URL �ַ������н���