Home > Backend Development > PHP Tutorial > PHP访问局域网共享文件,该如何解决

PHP访问局域网共享文件,该如何解决

WBOY
Release: 2016-06-13 12:13:14
Original
1168 people have browsed it

PHP访问局域网共享文件
各位好!我想访问局域网内另外一台计算机上的图片文件,可是在PHP里面老是找不到。在PHP里面用filesize测试图片的大小都不行!代码是:
$filename = "http://172.16.18.123/pic/2012.png";  
   $size = filesize($filename);  
   echo $size;  

报的错是:Warning: filesize() [function.filesize]: stat failed for http://172.16.12.103......
我确定两台机器是在一个网段,而且共享都设置了的。我在浏览器输入上述代码中的url地址都可以的。
请教哪位处理过这种问题的大侠!不甚感激!!
------解决思路----------------------
$filename = "//172.16.18.123/pic/2012.png"; 
------解决思路----------------------
统一资源定位
//机器名或ip/共享名/路径/文件名

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template