No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

output_reset_rewrite_vars

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

output_reset_rewrite_varsReset URL rewriter values

Description

output_reset_rewrite_vars ( void ) : bool

This function resets the URL rewriter and removes all rewrite variables previously set by the output_add_rewrite_var() function.

PHP: output_reset_rewrite_vars - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns TRUE on success or FALSE on failure.

PHP: output_reset_rewrite_vars - Manual Home of Manuel PHP  Contents Haut

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().

PHP: output_reset_rewrite_vars - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 output_reset_rewrite_vars() example

<?php
session_start
();
output_add_rewrite_var('var''value');

echo 
'<a href="https://www.gaudry.be/en/php-rf-file.html">link</a>';
ob_flush();

output_reset_rewrite_vars();
echo 
'<a href="https://www.gaudry.be/en/php-rf-file.html">link</a>';
?>

The above example will output:

<a href="file.php?PHPSESSID=xxx&var=value">link</a>
<a href="file.php">link</a>

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph