RosettaCodeData/Task/URL-encoding/PHP/url-encoding.php
2023-07-01 13:44:08 -04:00

4 lines
56 B
PHP

<?php
$s = 'http://foo/bar/';
$s = rawurlencode($s);
?>