File IO
Performance Tuning PHP
2024-11-24
31
Most PHP scripts perform File IO operations, whether it be inclusion of scripts or opening or writing to files. One common mistake made by developers often makes these operations much slower then necessary.
How
NOT
to open files
<?php
include
"file.php"
;
?>