From 7b191d71b8f7176041c2a3e4b725953f44134011 Mon Sep 17 00:00:00 2001 From: Rui Hirokawa Date: Sat, 30 Sep 2000 02:01:26 +0000 Subject: [PATCH] update translations and some cosmetic changes and fixed some typos. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@33132 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/aspell.xml | 2 +- functions/http.xml | 2 +- functions/hw.xml | 2 +- functions/ifx.xml | 2 +- functions/imap.xml | 4 ++-- functions/info.xml | 4 ++-- functions/mysql.xml | 8 ++++---- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/functions/aspell.xml b/functions/aspell.xml index b729e36607..da81cec752 100644 --- a/functions/aspell.xml +++ b/functions/aspell.xml @@ -88,7 +88,7 @@ if (aspell_check ($aspell_link, "testt")) { - aspell_check-raw + aspell_check_raw Check a word without changing its case or trying to trim it diff --git a/functions/http.xml b/functions/http.xml index 5bda2861a4..9bf36412ad 100644 --- a/functions/http.xml +++ b/functions/http.xml @@ -87,7 +87,7 @@ header ("Pragma: no-cache"); // HTTP/1.0 - header_sent + headers_sent Returns true if headers have been sent diff --git a/functions/hw.xml b/functions/hw.xml index cd6ff9dab3..cbd03d5c11 100644 --- a/functions/hw.xml +++ b/functions/hw.xml @@ -1864,7 +1864,7 @@ RewriteEngine on - hw_Username + hw_getusername name of currently logged in user diff --git a/functions/ifx.xml b/functions/ifx.xml index 4982cc4224..98dc72976f 100644 --- a/functions/ifx.xml +++ b/functions/ifx.xml @@ -1319,7 +1319,7 @@ for ($i = 0; $i < count($properties); $i++) { - ifx_free_slob + ifxus_free_slob Deletes the slob object diff --git a/functions/imap.xml b/functions/imap.xml index 7081e96124..14a3628147 100644 --- a/functions/imap.xml +++ b/functions/imap.xml @@ -921,7 +921,7 @@ fetchsubject (subject line formatted to fit subjectlength - <function>imap_getmailboxes</function> example + <function>imap_listmailbox</function> example $mbox = imap_open("{your.imap.host}","username","password",OP_HALFOPEN) || die("can't connect: ".imap_last_error()); @@ -1251,7 +1251,7 @@ imap_close($mbox); '}', consists of the servers name or ip address, a protocol secification (beginning with '/') and an optional port specifier beginnung with ':'. The server part is mandatory in all mailbox - parameters. Mailbos names that contain international characters + parameters. Mailbox names that contain international characters besides those in the printable ASCII space have to be encoded with imap_utf7_encode. diff --git a/functions/info.xml b/functions/info.xml index d822330d65..3301cea00d 100644 --- a/functions/info.xml +++ b/functions/info.xml @@ -49,9 +49,9 @@ - + - assert-options + assert_options Set/get the various assert flags diff --git a/functions/mysql.xml b/functions/mysql.xml index 053ab8d15c..a78c37e380 100644 --- a/functions/mysql.xml +++ b/functions/mysql.xml @@ -652,10 +652,10 @@ select t1.f1 as foo t2.f1 as bar from t1, t2 mysql_connect ($host, $user, $password); $result = mysql_db_query ("database","select user_id, fullname from table"); while ($row = mysql_fetch_array ($result)) { - echo "user_id: ".$row["user_id"]."
\n"; - echo "user_id: ".$row[0]."
\n"; - echo "fullname: ".$row["fullname"]."
\n"; - echo "fullname: ".$row[1]."
\n"; + echo "user_id: ".$row["user_id"]."<br>\n"; + echo "user_id: ".$row[0]."<br>\n"; + echo "fullname: ".$row["fullname"]."<br>\n"; + echo "fullname: ".$row[1]."<br>\n"; } mysql_free_result ($result); ?>