mirror of
https://github.com/php/presentations.git
synced 2026-03-28 01:22:14 +01:00
13 lines
381 B
XML
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> |