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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。