问题:用wokerman的WebServer做server
存在文件bb/aa.jpg
但是用localhot/bb/aa.jpg就可以正确输出出来
用localhot//bb/aa.jpg输出不出来
解决方案
将WebServer onmessage方法中的
$workerman_url_info = parse_url($_SERVER);
改为 $workerman_url_info = parse_url('http://'.$_SERVER.$_SERVER);
感谢反馈