svn: /phpdoc/de/trunk/reference/ array/functions/array-rand.xml filesystem/functions/pathinfo.xml
[email protected] (Mark Wiesemann)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
wiesemann Thu, 13 May 2010 13:46:33 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=299339
Log:
sync to EN
Changed paths:
U phpdoc/de/trunk/reference/array/functions/array-rand.xml
U phpdoc/de/trunk/reference/filesystem/functions/pathinfo.xml
Modified: phpdoc/de/trunk/reference/array/functions/array-rand.xml
===================================================================
--- phpdoc/de/trunk/reference/array/functions/array-rand.xml 2010-05-13 13:11:21 UTC (rev 299338)
+++ phpdoc/de/trunk/reference/array/functions/array-rand.xml 2010-05-13 13:46:33 UTC (rev 299339)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 298761 Maintainer: wiesemann Status: ready -->
<!-- CREDITS: tom -->
<refentry xml:id="function.array-rand" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -36,7 +36,9 @@
<term><parameter>num_req</parameter></term>
<listitem>
<para>
- Gibt an, wie viele Einträge Sie auswählen möchten.
+ Gibt an, wie viele Einträge Sie auswählen möchten. Falls mehr
+ Einträge als im Array existieren angegeben werden, wird ein
+ Fehler der Stufe <constant>E_WARNING</constant> erzeugt.
</para>
</listitem>
</varlistentry>
Modified: phpdoc/de/trunk/reference/filesystem/functions/pathinfo.xml
===================================================================
--- phpdoc/de/trunk/reference/filesystem/functions/pathinfo.xml 2010-05-13 13:11:21 UTC (rev 299338)
+++ phpdoc/de/trunk/reference/filesystem/functions/pathinfo.xml 2010-05-13 13:46:33 UTC (rev 299339)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 299134 Maintainer: wiesemann Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.pathinfo">
<refnamediv>
<refname>pathinfo</refname>
@@ -99,7 +99,7 @@
<programlisting role="php">
<![CDATA[
<?php
-$path_parts = pathinfo('/www/htdocs/index.html');
+$path_parts = pathinfo('/www/htdocs/inc/lib.inc.php');
echo $path_parts['dirname'], "\n";
echo $path_parts['basename'], "\n";
@@ -111,10 +111,10 @@
&example.outputs;
<screen>
<![CDATA[
-/www/htdocs
-index.html
-html
-index
+/www/htdocs/inc
+lib.inc.php
+php
+lib.inc
]]>
</screen>
</example>