vrana Mon Apr 25 04:13:49 2005 EDT
Modified files:
/phpdoc/en/reference/array/functions array-intersect-ukey.xml
array-udiff.xml
Log:
User function is used for comparison (bug #32811)
http://cvs.php.net/diff.php/phpdoc/en/reference/array/functions/array-intersect-ukey.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/array/functions/array-intersect-ukey.xml
diff -u phpdoc/en/reference/array/functions/array-intersect-ukey.xml:1.2
phpdoc/en/reference/array/functions/array-intersect-ukey.xml:1.3
--- phpdoc/en/reference/array/functions/array-intersect-ukey.xml:1.2 Mon Nov
1 07:39:24 2004
+++ phpdoc/en/reference/array/functions/array-intersect-ukey.xml Mon Apr
25 04:13:48 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.array-intersect-ukey">
<refnamediv>
<refname>array_intersect_ukey</refname>
@@ -70,13 +70,6 @@
The values returned are those of <parameter>array1</parameter>.
</para>
<para>
- The two keys from the <literal>key => value</literal> pairs are
- considered equal only if
- <literal>(string) $key1 === (string) $key2 </literal>. In other words
- a strict type check is executed so the string representation must be
- the same.
- </para>
- <para>
See also <function>array_diff</function>,
<function>array_udiff</function>
<function>array_diff_assoc</function>,
http://cvs.php.net/diff.php/phpdoc/en/reference/array/functions/array-udiff.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/reference/array/functions/array-udiff.xml
diff -u phpdoc/en/reference/array/functions/array-udiff.xml:1.9
phpdoc/en/reference/array/functions/array-udiff.xml:1.10
--- phpdoc/en/reference/array/functions/array-udiff.xml:1.9 Mon Nov 1
07:39:25 2004
+++ phpdoc/en/reference/array/functions/array-udiff.xml Mon Apr 25 04:13:48 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/array.xml, last change in rev 1.14 -->
<refentry id="function.array-udiff">
<refnamediv>
@@ -76,13 +76,6 @@
</para>
<note>
<simpara>
- Two elements are considered equal if and only if
- <literal>(string) $elem1 === (string) $elem2</literal>. In words:
- when the string representation is the same.
- </simpara>
- </note>
- <note>
- <simpara>
Please note that this function only checks one dimension of a
n-dimensional
array. Of course you can check deeper dimensions by using
<literal>array_udiff($array1[0], $array2[0],
"data_compare_func");</literal>.