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

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

PHPz
Release: 2018-10-16 15:17:22
Original
1085 people have browsed it

这篇文章主要讲了用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;
}
Copy after login

【相关教程推荐】

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

     

 

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template