base64_encode(file_get_contents(zipPath))c#等效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了base64_encode(file_get_contents(zipPath))c#等效相关的知识,希望对你有一定的参考价值。
我有这个php函数
base64_encode(file_get_contents($this->pathZIP));
它返回一个Zip Base64字节,需要将其移植到c#中
c#中的确切等效项是什么?
答案
尝试一个:
Byte[] bytes = File.ReadAllBytes("path");
String file = Convert.ToBase64String(bytes);
以上是关于base64_encode(file_get_contents(zipPath))c#等效的主要内容,如果未能解决你的问题,请参考以下文章
如何在 PHP 中解析 base64_encode() 的 Json 结果
更新 MYSQL 数据库上的 base64_encode() 序列化数组? [关闭]