Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending arabic characters in URL

i have these arabic sentence:

نايتيد أمامه عشرة أيام فقط لكي يقرر مستقبل برباتوف في النادي

It must be sent in the url. I tried this approach:

$url = 'http://example.com/?q='.urlencode('نايتيد أمامه عشرة أيام فقط لكي يقرر مستقبل برباتوف في النادي');

The result of that encoding is: %D9%86%D8%A7%D9%8A%D8%AA%D9%8A%D8%AF+%D8%A3%D9%85%D8%A7%D9%85%D9%87+%D8%B9%D8%B4%D8%B1%D8%A9+%D8%A3%D9%8A%D8%A7%D9%85+%D9%81%D9%82%D8%B7+%D9%84%D9%83%D9%8A+%D9%8A%D9%82%D8%B1%D8%B1+%D9%85%D8%B3%D8%AA%D9%82%D8%A8%D9%84+%D8%A8%D8%B1%D8%A8%D8%A7%D8%AA%D9%88%D9%81+%D9%81%D9%8A+%D8%A7%D9%84%D9%86%D8%A7%D8%AF%D9%8A

But the php script is receiving this in the $_GET['q'] querystring:

نايتيد أمامه عشرة أيام Ùقط لكي يقرر مستقبل برباتو٠ÙÙŠ النادي

The php file is UTF-8 encoded. Any ideas?

like image 848
Andres SK Avatar asked Feb 22 '23 01:02

Andres SK


1 Answers

You must urldecode your encoded entities. Furthermore remember that UTF8 and PHP are not a great combination.

like image 124
Alex van den Hoogen Avatar answered Mar 05 '23 03:03

Alex van den Hoogen