我正在寻找与javascript encodeURI()
encodeURI("http://example.com/abc?a=1 a&b=2 b&c=3 c#123")
提供http://example.com/abc?a=1%20a&b=2%20b&c=3%20c#123
但是urlencode()
php函数给出了http%3A%2F%2Fexample.com%2Fabc%3Fa%3D1+a%26b%3D2+b%26c%3D3+c%23123
有什么PHP的javascript encodeURI在PHP中可用?