• 冒险村物语
  • 英雄无敌3塔防
  • 驾考家园手游

php对表单内容进行处理

2015-05-27

/**	 * 过滤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);	}

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)

人气推荐

知识阅读

精彩推荐

  • 游戏
  • 软件
查看更多>>