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

5 lines
56 B
PHP
Raw Permalink Normal View History

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