Home >Backend Development >PHP Tutorial >PHP提交自动过滤掉input框内的指定字符,怎么写呢?

PHP提交自动过滤掉input框内的指定字符,怎么写呢?

WBOY
WBOYOriginal
2016-06-23 14:16:151058browse

PHP

提交数据时,将所有input内的PHP提交自动过滤掉input框内的指定字符,怎么写呢? 字符过滤掉,并保留其他内容。
这个怎么写呢

回复讨论(解决方案)

$s=str_replace('>','',str_replace('<img  src=','',$s));echo $s;</pre alt="PHP提交自动过滤掉input框内的指定字符,怎么写呢?" > </p> <p class="sougouAnswer">  <pre class="sycode" name="code"><?php$src='|<img  src=(.*) alt="PHP提交自动过滤掉input框内的指定字符,怎么写呢?" >|iUs';$post=$_POST['value'];preg_match($src,$post,$v);print_r($v);?>

要是提交数据的时候处理而不是接收数据的时候处理的话,那就得用正则了,
var s=document.getElementById('input_id');
s=s.replace(/(PHP提交自动过滤掉input框内的指定字符,怎么写呢?+/ig,"");
做了不区分大小写和多行的处理,看是不是你要的吧。

preg_match('/"(.*)?.[a-Z]{3,4}"/i',$input_value,$arr);
echo $arr[0];

Statement:
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