mysqlu prep函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysqlu prep函数相关的知识,希望对你有一定的参考价值。
function mysql_prep($value) { $magic_quotes_active = get_magic_quotes_gpc(); $new_enough_gpc = function_exists("mysql_real_escape_string"); // i.e, php >= v4.3.0 if ($new_enough_gpc) { if($magic_quotes_active) {$value = stripslashes($value);} $value = mysql_real_escape_string($value); } else { if (!$magic_quotes_active) {$value = addslashes($value);} } return $value; }
以上是关于mysqlu prep函数的主要内容,如果未能解决你的问题,请参考以下文章