PHP 中的文件字节数组

发布于 2024-12-11 12:25:01 字数 561 浏览 1 评论 0原文

可能的重复:
将文件读入字节数组 (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可爱咩 2024-12-18 12:25:01
$content = file_get_contents($filePath);
// now we can access $content as an byte array
for ($i = 0, $c = strlen($content); $i < $c; $i++)
  echo($content[$i]);
$content = file_get_contents($filePath);
// now we can access $content as an byte array
for ($i = 0, $c = strlen($content); $i < $c; $i++)
  echo($content[$i]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文