Home >Backend Development >PHP Tutorial >廉价的虚拟主机果然不能信啊!

廉价的虚拟主机果然不能信啊!

WBOY
WBOYOriginal
2016-06-23 14:06:38915browse

除了上次的.htacess文件,做的只是搬迁了一下网站,程序没动过了。

今天才发现问题一堆。

; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off

; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off

; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off

貌似默认是on的,输入单引号带转义

Warning: fsockopen() [function.fsockopen]: unable to connect to smtp.126.com

图像拓展gd2.dll都不开启

有没有什么好的主机推荐推荐,价格100元以内


回复讨论(解决方案)

magic_quotes_gpc、magic_quotes_runtime、magic_quotes_sybase
php5.3 默认关闭
php5.4 取消

magic_quotes_sybase 对于你无用,他是为 sybase 系列数据库而设的,比如 sybase,mssql、oracle ...

总之 php 去除了关于传入数据的自动转义,理由是:安全问题应该是程序员自己的事情

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