(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
output_reset_rewrite_vars — Reset URL rewriter values
This function removes all rewrite variables previously set by the output_add_rewrite_var() function.
This function has no parameters.
| Version | Description |
|---|---|
| 7.1.0 | Before PHP 7.1.0, rewrite vars set by output_add_rewrite_var() use the same Session module trans sid output buffer. Since PHP 7.1.0, dedicated output buffer is used and output_reset_rewrite_vars() only removes rewrite vars defined by output_add_rewrite_var(). |
Example #1 output_reset_rewrite_vars() example
<?php
ini_set('url_rewriter.tags', 'a=href');
output_add_rewrite_var('var', 'value');
echo '<a href="/?originalUrl=https%3A%2F%2Fphp.net%2Ffile.php">link</a>';
ob_flush();
output_reset_rewrite_vars();
echo '<a href="/?originalUrl=https%3A%2F%2Fphp.net%2Ffile.php">link</a>';
?>The above example will output:
<a href="/?originalUrl=https%3A%2F%2Fphp.net%2F%26quot%3Bfile.php%3Fvar%3Dvalue%26quot%3B%26gt%3Blink%26lt%3B%2Fa%26gt%3B%26lt%3Ba%2520href%3D%26quot%3Bfile.php%26quot%3B%26gt%3Blink%26lt%3B%2Fa%26gt%3B%253C%2Fpre">