git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@70853 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sebastian Nohn 2002-02-24 12:46:46 +00:00
parent de386881c6
commit c7b64a1f72

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.32 $ -->
<!-- $Revision: 1.33 $ -->
<reference id="ref.dir">
<title>Directory functions</title>
<titleabbrev>Directories</titleabbrev>
@ -224,12 +224,12 @@ if ($dir = @opendir("/tmp")) {
</para>
<para>
<example>
<title>List all files in the current directory</title>
<title>List all files in a directory</title>
<programlisting role="php">
<![CDATA[
// Note that !== did not exist until 4.0.0-RC2
<?php
$handle=opendir('.');
$handle=opendir('/path/to/files');
echo "Directory handle: $handle\n";
echo "Files:\n";