欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php对表单内容开展处理

程序员文章站 2024-02-15 10:47:40
...
php对表单内容进行处理
/**	 * 过滤HTML内容后返回	 *	 * @param      $string	 * @param bool $html	 *	 * @return array|string	 */	public static function safeOutput($string, $html = false) {		if (!$html)			$string = strip_tags($string);		return @Tools::htmlentitiesUTF8($string, ENT_QUOTES);	}	public static function htmlentitiesUTF8($string, $type = ENT_QUOTES) {		if (is_array($string))			return array_map(array('Tools', 'htmlentitiesUTF8'), $string);		return htmlentities((string)$string, $type, 'utf-8');	}	public static function htmlentitiesDecodeUTF8($string) {		if (is_array($string))			return array_map(array('Tools', 'htmlentitiesDecodeUTF8'), $string);		return html_entity_decode((string)$string, ENT_QUOTES, 'utf-8');	}	/**	 * 对POST内容进行处理	 *	 * @return array	 */	public static function safePostVars() {		if (!is_array($_POST))			return array();		$_POST = array_map(array('Tools', 'htmlentitiesUTF8'), $_POST);	}

php对表单内容开展处理

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频