سؤال

What I am trying to do is read and write from a shared folder on a network. The .php is something like fopen(\\\\server\\share\\file.txt, "r"), but my problem is I dont know what name to supply for the server name.

Can I use the IP address as the server name?

Or is the server name what I have circled in red? enter image description here

هل كانت مفيدة؟

المحلول

You can use the ip. Whatever format works with windows explorer (given that you add any needed extra backslashes that are used for escaping) should work with php, too.

نصائح أخرى

On windows that would be:

fopen("\\\\server\\share\\file.txt", "r");

(you must use quotes)

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top