magic_quotes_runtime 和 magic_quotes_sybase 的作用

Posted zhuyongzhe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了magic_quotes_runtime 和 magic_quotes_sybase 的作用相关的知识,希望对你有一定的参考价值。

如果启用了 magic_quotes_runtime,大多数返回任何形式外部数据的函数,包括数据库和文本段将会用反斜线转义引号。

如果启用了magic_quotes_sybase,单引号会被单引号转义而不是反斜线。

自 PHP 5.3 起,该函数已经被弃用,执行它的时候会抛出 E_DEPRECATED 异常。 自 PHP 5.4 起,尝试开启 magic quotes 时该函数会产生一个 E_CORE_ERROR 错误。

受 magic_quotes_runtime 影响的函数(不包括 PECL 里的函数):
get_meta_tags()
file_get_contents()
file()
fgets()
fwrite()
fread()
fputcsv()
stream_socket_recvfrom()
exec()
system()
passthru()
stream_get_contents()
bzread()
gzfile()
gzgets()
gzwrite()
gzread()
exif_read_data()
dba_insert()
dba_replace()
dba_fetch()
ibase_fetch_row()
ibase_fetch_assoc()
ibase_fetch_object()
mssql_fetch_row()
mssql_fetch_object()
mssql_fetch_array()
mssql_fetch_assoc()
mysqli_fetch_row()
mysqli_fetch_array()
mysqli_fetch_assoc()
mysqli_fetch_object()
pg_fetch_row()
pg_fetch_assoc()
pg_fetch_array()
pg_fetch_object()
pg_fetch_all()
pg_select()
sybase_fetch_object()
sybase_fetch_array()
sybase_fetch_assoc()
SplFileObject::fgets()
SplFileObject::fgetcsv()
SplFileObject::fwrite()

以上是关于magic_quotes_runtime 和 magic_quotes_sybase 的作用的主要内容,如果未能解决你的问题,请参考以下文章

PHP字符串转义

phpmailer发送excell

phpmailer发送excell

PHP 魔术引号

php 数据过滤

R - 删除具有相同值的行和具有相同值组合的行