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.
可能重复: PHP 中最快的 XML 解析器是什么?
我仍然需要维护 xml 格式,但我发现我的主要瓶颈是我打了很多电话simplexml_load_file();
simplexml_load_file();
simplexml_load_file本身并没有那么慢。问题是它导致的 I/O,这将是昂贵的。使用不同的方法来解析您的 XML 文件不会使其更快。
simplexml_load_file
您可以尝试优化您的程序以减少打开 xml 文件的频率,或者您可以考虑另一种保存数据的方法,例如在数据库中以加快处理速度。