RosettaCodeData/Task/URL-encoding/PHP/url-encoding.php

5 lines
56 B
PHP

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