在php的file_get_contents中使用了什么文件模式,访问和共享

时间:2015-04-01 08:52:16

标签: c# php windows file readfile

在Windows上 C# File.Open()方法具有以下函数定义:

File.Open(String fileName, FileMode mode, FileAccess access, FileShare share)

来源:https://msdn.microsoft.com/en-us/library/y973b725%28v=vs.110%29.aspx

参数可以包含以下值:

  • FileMode :追加,创建,新建,打开,OpenOrCreate,截断
  • FileAccess :读取,读取,写入
  • FileShare :删除,可继承,无,读取,读写,写入

主要问题

在Windows上的php中,file_get_contents使用了哪个FileMode,FileAccess和FileShare?

问题1

如何在Windows上的php中file_get_contentsfopen影响FileAccess和FileShare?

问题2

Windows上的两个或多个并发进程是否可以对同一个文件使用file_get_contents

非常感谢你。

0 个答案:

没有答案