php相当于C的fputc

发布于 2024-11-05 05:03:26 字数 331 浏览 1 评论 0原文

我想知道 PHP 中是否有相当于 C 的 fputc 的东西? 我正在尝试在 PHP 中执行以下 C 代码:

fputc(0x10, fp);

有关 fputc 的更多信息: http:// en.wikipedia.org/wiki/C_file_input/output#Writing_to_a_stream_using_fputc

谢谢

I am wondering if there is an equivalent to C's fputc in PHP?
I am trying to do the following C code in PHP:

fputc(0x10, fp);

more information on fputc: http://en.wikipedia.org/wiki/C_file_input/output#Writing_to_a_stream_using_fputc

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

简单气质女生网名 2024-11-12 05:03:28

PHP 不将单个字符视为特殊类型。但是,由于 PHP string 只是一个八位字节序列,因此这样写是没有问题的:

  fwrite(fp,"\x10");

PHP does not treat single characters as a special type. Buts, as PHP string is just an sequence of octects, there is no problem in writing this:

  fwrite(fp,"\x10");
鸩远一方 2024-11-12 05:03:28

您必须以二进制模式打开一个文件,然后使用

You would have to open a file in binary mode and then use

纸短情长 2024-11-12 05:03:27

您可以将字符代码直接写入文件:

fputs($fp, "\x10");
// or
fputs($fp, chr(16)); 
// or
fputs($fp, chr(hexdec(10)); 

You can write the character code directly to the file:

fputs($fp, "\x10");
// or
fputs($fp, chr(16)); 
// or
fputs($fp, chr(hexdec(10)); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文