PHP抓取页面15-07-01
论述中认识PHP-FPM15-06-29
邮箱类的调用15-06-09
Warning: stream_socket_client() has been disabled for security reasons in /....... 在调用mail类时报错,一般是服务器禁用了stream_socket_client()函数,可以试试先和空间上商讨,一般会失败;换空间或者升级空间,当然会需要一定的时间和代价,此时可以考虑使用fsockopen替换; 需要注意的就是两个用法不同,以下是参考代码对比:fsockopen($host, 80, $errno, $errstr, 30);
fsockopen($host, $port, $errno, $errstr, $connection_timeout);
stream_
....
....