Files
archived-presentations/slides/acc_php/includes.xml
2004-05-07 14:26:55 +00:00

13 lines
381 B
XML

<slide title="File IO">
<blurb fontsize="4em">
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.
</blurb>
<example title="How %NOT% to open files" fontsize="4em"><![CDATA[<?php
include "file.php";
?>]]></example>
</slide>