Heim >php教程 >PHP源码 >用PHP中的函数批量过滤表单form的数据

用PHP中的函数批量过滤表单form的数据

PHPz
PHPzOriginal
2016-05-25 17:15:501081Durchsuche

这篇文章主要讲了用PHP中的函数批量过滤表单form的数据,有一定的参考价值,感兴趣的朋友可以看看。

function toarray($array, $var, $content = "") {
	foreach ( $array as $key => $value ) {
		if (is_array ( $value )) {
			$content .= $this->__array ( $value, "" . $var . "[\"" . $key . "\"]" );
		} else {
			$old_str = array ("\n", '"', "", "\r" );
			$new_str = array ("", "&#39;", "<?php", "?>", "" );
			$value = str_replace ( $old_str, $new_str, $value );
			$content .= "\$" . $var . "[&#39;" . $key . "&#39;] = \"" . $value . "\";\n";
		}
	}
	return $content;
}

【相关教程推荐】

1. php编程从入门到精通全套视频教程
2. php从入门到精通 
3. bootstrap教程

     

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:信息提示函数Nächster Artikel:PHP 对 MySQL 数据库进行备份