output_reset_rewrite_vars() 是 PHP 中的内置函数,通过删除之前通过 output_add_rewrite_var() 函数设置的所有重写变量来重置 URL 重写器值。
用法:
output_reset_rewrite_vars(): bool
参数:该函数不接受任何参数。
返回值:如果成功,该函数返回“true”,否则返回“false”。
程序1:以下是 的插图ouput_reset_rewrite_vars()函数。
PHP
<?php
ini_set('url_rewriter.tags', 'a=href,form=');
output_add_rewrite_var('page', 'home');
echo '<a href="index.php">Home</a>';
output_reset_rewrite_vars();
?>
输出:
Home
程序2:以下是 的插图output_reset_rewrite_vars()函数。
PHP
<?php
// Make the URL rewriter affect <a href> and <form> tags
ini_set('url_rewriter.tags','a=href,form=');
// Add a variable
output_add_rewrite_var('var', 'value');
echo '<a href="">This link (URL) will have a variable</a><br>';
ob_flush();
// Remove the variable
output_reset_rewrite_vars();
echo '<a href="">This link (URL) will not have a variable</a>';
?>
输出:
This link (URL) will have a variable This link (URL) will not have a variable
参考:https://www.php.net/manual/en/function.output-reset-rewrite-vars.php
相关用法
- PHP output_add_rewrite_var()用法及代码示例
- PHP octdec()用法及代码示例
- PHP openssl_pkey_new()用法及代码示例
- PHP openssl_pkey_get_public()用法及代码示例
- PHP openssl_pkey_export_to_file()用法及代码示例
- PHP openssl_private_encrypt()用法及代码示例
- PHP openssl_public_encrypt()用法及代码示例
- PHP openssl_public_decrypt()用法及代码示例
- PHP openssl_private_decrypt()用法及代码示例
- PHP ob_start()用法及代码示例
- PHP opendir()用法及代码示例
- PHP ord()用法及代码示例
- PHP ob_end_flush(), ob_end_clean()用法及代码示例
- PHP openssl_get_cipher_methods()用法及代码示例
- PHP openssl_cipher_iv_length()用法及代码示例
- PHP openssl_get_cert_locations()用法及代码示例
- PHP openssl_get_curve_names()用法及代码示例
- PHP openssl_spki_verify()用法及代码示例
- PHP openssl_spki_export_challenge()用法及代码示例
- PHP openssl_pkey_export()用法及代码示例
- PHP openssl_pkcs12_read()用法及代码示例
- PHP openssl_pkcs12_export_to_file()用法及代码示例
- PHP openssl_pkcs12_export()用法及代码示例
- PHP ob_get_clean()用法及代码示例
- PHP openssl_digest()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP output_reset_rewrite_vars() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。