fgets() 和 fread() - 有什么区别?

fgets() and fread() - What is the difference?(fgets() 和 fread() - 有什么区别?)
本文介绍了fgets() 和 fread() - 有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我了解 fgets() 之间的区别fgetss() 但我不明白 之间的区别fgets()fread(),有人可以澄清一下这个主题吗?哪个更快?谢谢!

I understand the differences between fgets() and fgetss() but I don't get the difference between fgets() and fread(), can someone please clarify this subject? Which one is faster? Thanks!

推荐答案

fgets 读取一行——即它将在换行符处停止.

fgets reads a line -- i.e. it will stop at a newline.

fread 读取原始数据——它将在指定的(或默认)字节数后停止,独立于可能存在或不存在的任何换行符.

fread reads raw data -- it will stop after a specified (or default) number of bytes, independently of any newline that might or might not be present.


速度不是使用一个而不是另一个的理由,因为这两个功能只是不做同样的事情:


Speed is not a reason to use one over the other, as those two functions just don't do the same thing :

  • 如果您想从文本文件中读取一行,请使用 fgets
  • 如果您想从文件中读取一些数据(不一定是一行),请使用fread.

这篇关于fgets() 和 fread() - 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)