Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序 XMLReader 从远程位置读取 XML 文件。我开始阅读的最大文件大小(以字节为单位)是多少?
谢谢
if ($file_size > XXX) { exit('Wohooo that is a massive file to handle for me. Chop it up please'); }
你为什么关心 max_file 的大小?使用fgets之类的东西,您可以一次读取一行,或者使用fread之类的东西,您可以设置一次获取多少。
使用其中任何一种,如果您控制内存,您可以轻松控制脚本将使用多少资源。
如果您担心脚本会占用过多的系统资源,那么这是一本关于如何更好地利用服务器上的内存与 CPU 周期的精彩读物。我通常选择unset()顺便说一句,似乎发现它会得到更好的结果。
unset()