我想在我的php代碼中編碼所有符號,如à é è ...
。例如:如何解碼php代碼中的所有符號
à --> %C3%A0
é --> %C3%A9
è --> %C3%A8
在我的代碼示例:
$Name = 'Teàst';
$result = file_get_contents('http://example.com/name/' . $Name .)
的URL必須是這樣的:http://example.com/name/Te%C3%A0st
什麼,我需要添加到我的代碼嗎?
有可能是一個功能 – 2015-03-31 21:10:26