如何編碼包含Unicode的URL?我想將它傳遞給命令行工具,我需要先對它進行編碼。使用html格式的URL編碼
<form action="index.php" method="get" >
<input type="text" name="find" value="عربي" /><br />
<input type="submit" value="search" />
<form />
示例: http://localhost/index.php?find =عربي
http://localhost/index.php?find=%DA%D1%C8%ED變得
http://www.drupalcode.com/api/function/mb_urlencode/contrib-5.x-1.x – 2012-01-30 14:45:08
所以你想'عربي'作爲參數值,但不知道如何將其轉換爲'%DA%D1%C8%ED',對嗎? – Gumbo 2012-01-30 14:45:46
爲什麼你不使用POST? POST請求將正確編碼。 – 2012-01-30 14:46:11