将变量添加到输出中的 URL:
<?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');
// Output a link and a form
echo '<a href="">This link\'s URL will have a variable</a>';
echo '<form>';
echo '<p>This form will have a hidden input</p>';
echo '<input type="text" name="hello">';
echo '</form>';
?>
亲自试一试 »
这个output_add_rewrite_var()
函数将变量添加到 HTML 标记中的 URL 以及表单的隐藏输入。受影响的标签取决于url_rewriter.tags
在 php.ini 中设置。
output_add_rewrite_var(name, value);
Parameter | Description |
---|---|
name | The name of the variable to be added to URLs and the content of the name attribute of hidden inputs in forms. |
value | The value of the variable to be added to URLs and the content of the value attribute of hidden inputs in forms. |
返回值: | TRUE 成功,FALSE 失败 |
---|---|
PHP 版本: | 4.3+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!