PHP PHP - Limpiarinyecciónsql
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP PHP - Limpiarinyecciónsql相关的知识,希望对你有一定的参考价值。
//mysqli_xxx
function inSql($value){
global $conn;
if( get_magic_quotes_gpc() ) $value = stripslashes( $value );
$value = mysqli_real_escape_string( $conn, $value );
return $value;
}
#echo inSql("testeando '");
//mysql_xxx
function inSql($value){
global $conn;
if( get_magic_quotes_gpc() ) $value = stripslashes( $value );
$value = mysql_real_escape_string( $value );
return $value;
}
#echo inSql("testeando '");
#Diferentes versiones de php:
function inSql ($string) {
global $conn,
if(version_compare(phpversion(),"4.3.0")=="-1") {
mysql_escape_string($string);
} elseif ($conn) {
mysql_real_escape_string($string,$conn);
} else { return false; }
}
以上是关于PHP PHP - Limpiarinyecciónsql的主要内容,如果未能解决你的问题,请参考以下文章
php [guzzle php] guzzle php #php
php send.php php邮件模板#php
IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?
如何从php5升级到php7
请问php中如何调用php文件中的内容?
php [php:PHPMailer示例] php库“PHPMailer”示例。 #PHP