php相当于C的fputc
我想知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
PHP 不将单个字符视为特殊类型。但是,由于 PHP string 只是一个八位字节序列,因此这样写是没有问题的:
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:
您必须以二进制模式打开一个文件,然后使用
You would have to open a file in binary mode and then use
您可以将字符代码直接写入文件:
You can write the character code directly to the file: