PHP 中的文件字节数组
可能的重复:
将文件读入字节数组 (PHP)
我需要php 中的以下(C#)方法有帮助吗?
private byte[] FileByteArray(string filePath) {
StreamReader sr = new StreamReader(filePath);
Stream st = sr.BaseStream;
BinaryReader br = new BinaryReader(st);
byte[] arrBytes = br.ReadBytes((st.Length + 1));
br.Close();
st.Close();
return arrBytes;
}
Possible Duplicate:
Reading a File into a Byte Array (PHP)
I need this below (C#) method in php, any help?
private byte[] FileByteArray(string filePath) {
StreamReader sr = new StreamReader(filePath);
Stream st = sr.BaseStream;
BinaryReader br = new BinaryReader(st);
byte[] arrBytes = br.ReadBytes((st.Length + 1));
br.Close();
st.Close();
return arrBytes;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)