mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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
This commit is contained in:
parent
f2d7cb6ba9
commit
7b191d71b8
7 changed files with 12 additions and 12 deletions
|
@ -88,7 +88,7 @@ if (aspell_check ($aspell_link, "testt")) {
|
|||
|
||||
<refentry id="function.aspell-check-raw">
|
||||
<refnamediv>
|
||||
<refname>aspell_check-raw</refname>
|
||||
<refname>aspell_check_raw</refname>
|
||||
<refpurpose>
|
||||
Check a word without changing its case or trying to trim it
|
||||
</refpurpose>
|
||||
|
|
|
@ -87,7 +87,7 @@ header ("Pragma: no-cache"); // HTTP/1.0
|
|||
|
||||
<refentry id="function.headers-sent">
|
||||
<refnamediv>
|
||||
<refname>header_sent</refname>
|
||||
<refname>headers_sent</refname>
|
||||
<refpurpose>Returns true if headers have been sent</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
|
|
|
@ -1864,7 +1864,7 @@ RewriteEngine on
|
|||
|
||||
<refentry id="function.hw-getusername">
|
||||
<refnamediv>
|
||||
<refname>hw_Username</refname>
|
||||
<refname>hw_getusername</refname>
|
||||
<refpurpose>name of currently logged in user</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
|
|
|
@ -1319,7 +1319,7 @@ for ($i = 0; $i < count($properties); $i++) {
|
|||
|
||||
<refentry id="function.ifxus-free-slob">
|
||||
<refnamediv>
|
||||
<refname>ifx_free_slob</refname>
|
||||
<refname>ifxus_free_slob</refname>
|
||||
<refpurpose>Deletes the slob object</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
|
|
|
@ -921,7 +921,7 @@ fetchsubject (subject line formatted to fit <parameter>subjectlength</parameter>
|
|||
</para>
|
||||
<para>
|
||||
<example>
|
||||
<title><function>imap_getmailboxes</function> example</title>
|
||||
<title><function>imap_listmailbox</function> example</title>
|
||||
<programlisting role="php">
|
||||
$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 <function>imap_utf7_encode</function>.
|
||||
</para>
|
||||
|
|
|
@ -49,9 +49,9 @@
|
|||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.assert_options">
|
||||
<refentry id="function.assert-options">
|
||||
<refnamediv>
|
||||
<refname>assert-options</refname>
|
||||
<refname>assert_options</refname>
|
||||
<refpurpose>Set/get the various assert flags</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
|
|
|
@ -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"]."<br>\n";
|
||||
echo "user_id: ".$row[0]."<br>\n";
|
||||
echo "fullname: ".$row["fullname"]."<br>\n";
|
||||
echo "fullname: ".$row[1]."<br>\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);
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue