|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2008-07-17 01:30 UTC] jani@php.net
  [2008-07-19 09:10 UTC] carsten_sttgt at gmx dot de
  [2008-07-25 01:00 UTC] php-bugs at lists dot php dot net
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 11:00:01 2025 UTC | 
Description: ------------ I can not access network drive by opendir() function. I've adjusted pemission D:\share for everyone can access it. I've also tried to opendir("\\\\k:\\"), but the result is false. With K: is network drive I've created and map to "D:\share" folder in my computer. Please give me some instruction to solve this problem Thanks in advance! My code look like: Reproduce code: --------------- $fh = opendir("k:\"); if($fh == false) { print("can not open directory!"); } else { print("Openning directory successful!"); } Expected result: ---------------- Openning directory successful! Actual result: -------------- can not open directory!