PHP: output_reset_rewrite_vars - Manual
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
output_reset_rewrite_vars โ Reset URL rewriter values
Description
function output_reset_rewrite_vars(): bool
Parameters
This function has no parameters.
Changelog
| 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(). |
Examples
Example #1 output_reset_rewrite_vars() example
<?php
ini_set('url_rewriter.tags', 'a=href');
output_add_rewrite_var('var', 'value');
echo '<a href="file.php">link</a>';
ob_flush();
output_reset_rewrite_vars();
echo '<a href="file.php">link</a>';
?>The above example will output:
<a href="file.php?var=value">link</a> <a href="file.php">link</a>
See Also
- output_add_rewrite_var() - Add URL rewriter values
- ob_flush() - Flush (send) the return value of the active output handler
- ob_list_handlers() - List all output handlers in use
- url_rewriter.tags
- url_rewriter.hosts
- session.trans_sid_tags
- session.trans_sid_hosts
Found A Problem?
There are no user contributed notes for this page.