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

5 lines
56 B
PHP
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
<?php
$s = 'http://foo/bar/';
$s = rawurlencode($s);
?>