yannick Wed Jun 22 16:37:27 2005 EDT
Modified files: /phpdoc/en/reference/filesystem/functions is-file.xml Log: correct php tag http://cvs.php.net/diff.php/phpdoc/en/reference/filesystem/functions/is-file.xml?r1=1.7&r2=1.8&ty=u Index: phpdoc/en/reference/filesystem/functions/is-file.xml diff -u phpdoc/en/reference/filesystem/functions/is-file.xml:1.7 phpdoc/en/reference/filesystem/functions/is-file.xml:1.8 --- phpdoc/en/reference/filesystem/functions/is-file.xml:1.7 Tue Apr 5 11:46:30 2005 +++ phpdoc/en/reference/filesystem/functions/is-file.xml Wed Jun 22 16:37:26 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-file"> <refnamediv> @@ -20,7 +20,7 @@ <title><function>is_file</function> example</title> <programlisting role="php"> <![CDATA[ -<? +<?php var_dump(is_file('a_file.txt')) . "\n"; var_dump(is_file('/usr/bin/')) . "\n"; ?>