dmytton Tue Apr 5 13:36:37 2005 EDT
Modified files:
/phpdoc/en/reference/filesystem/functions is-readable.xml
is-writable.xml
Log:
Removed tabs from examples
http://cvs.php.net/diff.php/phpdoc/en/reference/filesystem/functions/is-readable.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/filesystem/functions/is-readable.xml
diff -u phpdoc/en/reference/filesystem/functions/is-readable.xml:1.6
phpdoc/en/reference/filesystem/functions/is-readable.xml:1.7
--- phpdoc/en/reference/filesystem/functions/is-readable.xml:1.6 Tue Apr
5 11:36:41 2005
+++ phpdoc/en/reference/filesystem/functions/is-readable.xml Tue Apr 5
13:36:37 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.is-readable">
<refnamediv>
@@ -28,9 +28,9 @@
<?php
$filename = 'test.txt';
if (is_readable($filename)) {
- echo 'The file is readable';
+ echo 'The file is readable';
} else {
- echo 'The file is not readable';
+ echo 'The file is not readable';
}
?>
]]>
http://cvs.php.net/diff.php/phpdoc/en/reference/filesystem/functions/is-writable.xml?r1=1.7&r2=1.8&ty=u
Index: phpdoc/en/reference/filesystem/functions/is-writable.xml
diff -u phpdoc/en/reference/filesystem/functions/is-writable.xml:1.7
phpdoc/en/reference/filesystem/functions/is-writable.xml:1.8
--- phpdoc/en/reference/filesystem/functions/is-writable.xml:1.7 Mon Apr
4 13:31:30 2005
+++ phpdoc/en/reference/filesystem/functions/is-writable.xml Tue Apr 5
13:36:37 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.is-writable">
<refnamediv>
@@ -30,9 +30,9 @@
<?php
$filename = 'test.txt';
if (is_writable($filename)) {
- echo 'The file is writable';
+ echo 'The file is writable';
} else {
- echo 'The file is not writable';
+ echo 'The file is not writable';
}
?>
]]>