| Nuno Lopes 2006-07-22, 6:57 pm |
| nlopess Sat Jul 22 15:32:38 2006 UTC
Modified files:
/phpdoc/en/reference/filesystem/functions pathinfo.xml
Log:
enhance example (#38187)
http://cvs.php.net/viewvc.cgi/phpdo...2&diff_format=u
Index: phpdoc/en/reference/filesystem/functions/pathinfo.xml
diff -u phpdoc/en/reference/filesystem/functions/pathinfo.xml:1.11 phpdoc/en/reference/filesystem/functions/pathinfo.xml:1.12
--- phpdoc/en/reference/filesystem/functions/pathinfo.xml:1.11 Mon Jul 17 10:50:14 2006
+++ phpdoc/en/reference/filesystem/functions/pathinfo.xml Sat Jul 22 15:32:38 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.11 $ -->
+<!-- $Revision: 1.12 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.61 -->
<refentry id="function.pathinfo">
<refnamediv>
@@ -41,6 +41,7 @@
echo $path_parts['dirname'], "\n";
echo $path_parts['basename'], "\n";
echo $path_parts['extension'], "\n";
+echo $path_parts['filename'], "\n"; // since PHP 5.2.0
?>
]]>
</programlisting>
@@ -52,6 +53,7 @@
/www/htdocs
index.html
html
+index
]]>
</screen>
</example>
|