PHP 用于清除POST变量的函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 用于清除POST变量的函数相关的知识,希望对你有一定的参考价值。

// This function is used to clean POST variables.	
function clean($value) {

	// If magic quotes not turned on add slashes.
	if(!get_magic_quotes_gpc())
	
	// Adds the slashes.
	{ $value = addslashes($value); }
	
	// Strip any tags from the value.
	$value = strip_tags($value);
	
	// Return the value out of the function.
	return $value;
	
} // End function.

//usage simple pass a string to the function and return the data back to the same variable

$sample = "<a href='#'>test</a>";

$sample = clean($sample);

echo $sample;

以上是关于PHP 用于清除POST变量的函数的主要内容,如果未能解决你的问题,请参考以下文章

PHP未设置会话不起作用

php函数里面怎么获取post过来的值

PHP表单-PHP $_POST 变量

PHP $_GET与$_POST

将变量从 PHP 传递到 AJAX 成功函数

PHP中的$_POST