mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fixing bug #15153
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@70853 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
de386881c6
commit
c7b64a1f72
1 changed files with 3 additions and 3 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue