require_once 'Net/URL.php';
string setOption (string $optionName, string $value)
string setOption
Setting a Net_URL option
Table 50-1. List of options
string $optionName - The option name to set.
string $value - The value of the option to set.
Example 50-1. Using Net_URL
<?php require_once 'Net/URL.php'; $url = new Net_URL; $url->setOption('encode_query_keys', true); print_r($url->querystring); ?>