sander Sat Jun 15 04:54:37 2002 EDT
Modified files:
/phpdoc-nl/reference/math/functions abs.xml
/phpdoc-nl/reference/strings/functions sscanf.xml
/phpdoc-nl/reference/url/functions parse-url.xml
/phpdoc-nl/reference/var/functions is-null.xml
Log:
Sync with EN
Index: phpdoc-nl/reference/math/functions/abs.xml
diff -u phpdoc-nl/reference/math/functions/abs.xml:1.3
phpdoc-nl/reference/math/functions/abs.xml:1.4
--- phpdoc-nl/reference/math/functions/abs.xml:1.3 Fri Jun 14 17:45:33 2002
+++ phpdoc-nl/reference/math/functions/abs.xml Sat Jun 15 04:54:36 2002
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.3 Maintainer: sander Status: ready -->
-<!-- $Revision: 1.3 $ -->
+<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.abs">
<refnamediv>
<refname>abs</refname>
Index: phpdoc-nl/reference/strings/functions/sscanf.xml
diff -u phpdoc-nl/reference/strings/functions/sscanf.xml:1.3
phpdoc-nl/reference/strings/functions/sscanf.xml:1.4
--- phpdoc-nl/reference/strings/functions/sscanf.xml:1.3 Fri Jun 14 17:49:37
2002
+++ phpdoc-nl/reference/strings/functions/sscanf.xml Sat Jun 15 04:54:37 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
+<!-- EN-Revision: 1.3 Maintainer: sander Status: ready -->
<!-- $Revison: $ -->
<refentry id="function.sscanf">
<refnamediv>
Index: phpdoc-nl/reference/url/functions/parse-url.xml
diff -u phpdoc-nl/reference/url/functions/parse-url.xml:1.2
phpdoc-nl/reference/url/functions/parse-url.xml:1.3
--- phpdoc-nl/reference/url/functions/parse-url.xml:1.2 Sat Jun 1 05:44:37 2002
+++ phpdoc-nl/reference/url/functions/parse-url.xml Sat Jun 15 04:54:37 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.3 Maintainer: sander Status: ready -->
+<!-- EN-Revision: 1.4 Maintainer: sander Status: ready -->
<refentry id="function.parse-url">
<refnamediv>
<refname>parse_url</refname>
@@ -57,6 +57,36 @@
</listitem>
</itemizedlist>
</para>
+ <para>
+ Deze functie is <emphasis role="strong">not</emphasis> bedoelt om een url
+ te valideren, het breekt de url alleen op in de hier boven beschreven
+ stukken. Incomplete urls worden ook geaccepteerd,
+ <function>parse_url</function> probeert ze dan zo goed mogelijk te
+ interpreteren.
+ </para>
+ <example>
+ <title>Het gebruik van <function>parse_url</function></title>
+ <screen>
+$ php -r 'print_r(
+parse_url("http://username:password@hostname/path?arg=value#anchor"));'
+Array
+(
+ [scheme] => http
+ [host] => hostname
+ [user] => username
+ [pass] => password
+ [path] => /path
+ [query] => arg=value
+ [fragment] => anchor
+)
+$ php -r 'print_r( parse_url("http://ongeldige_host..name/"));'
+Array
+(
+ [scheme] => http
+ [host] => ongeldige_host..name
+ [path] => /
+)
+ </screen>
+ </example>
<para>
Zie ook: <function>pathinfo</function>.
</para>
Index: phpdoc-nl/reference/var/functions/is-null.xml
diff -u phpdoc-nl/reference/var/functions/is-null.xml:1.1
phpdoc-nl/reference/var/functions/is-null.xml:1.2
--- phpdoc-nl/reference/var/functions/is-null.xml:1.1 Sat Jun 1 10:01:48 2002
+++ phpdoc-nl/reference/var/functions/is-null.xml Sat Jun 15 04:54:37 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
+<!-- EN-Revision: 1.3 Maintainer: sander Status: ready -->
<refentry id="function.is-null">
<refnamediv>
<refname>is_null</refname>
@@ -18,7 +18,13 @@
en anders &false;.
</para>
<para>
- Zie ook <function>is_bool</function>,
+ In de documentatie voor het type <link
+ linkend="language.types.null.syntax">&null;</link> wordt beschreven
+ wanneer een variabele als &null; wordt beschouwd en wanneer niet.
+ </para>
+ <para>
+ Zie ook <link linkend="language.types.null.syntax">&null;</link>,
+ <function>is_bool</function>,
<function>is_numeric</function>,
<function>is_float</function>,
<function>is_int</function>,