mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
minor fixes by anon users
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@338890 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
89f51a028d
commit
e1b57a1950
4 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
|||
<refentry xml:id="function.eio-grp" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>eio_grp</refname>
|
||||
<refpurpose>Createsa request group.</refpurpose>
|
||||
<refpurpose>Creates a request group.</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
</para>
|
||||
<para>
|
||||
Please note that <function>ftp_pasv</function> can only be called after a
|
||||
successfull login or otherwise it will fail.
|
||||
successful login or otherwise it will fail.
|
||||
</para>
|
||||
</refsect1>
|
||||
<refsect1 role="parameters">
|
||||
|
|
|
@ -52,7 +52,7 @@ XML;
|
|||
$doc = simplexml_load_string($xmlstr);
|
||||
$xml = explode("\n", $xmlstr);
|
||||
|
||||
if (!$doc) {
|
||||
if ($doc === false) {
|
||||
$errors = libxml_get_errors();
|
||||
|
||||
foreach ($errors as $error) {
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<para>
|
||||
The data returned by this method will be decoded internally by PHP using the
|
||||
unserialization method specified in <link linkend="ini.session.serialize-handler">session.serialize_handler</link>.
|
||||
The resultig data will be used to populate the <varname>$_SESSION</varname> superglobal.
|
||||
The resulting data will be used to populate the <varname>$_SESSION</varname> superglobal.
|
||||
</para>
|
||||
<para>
|
||||
Note that the serialization scheme is not the same as <function>unserialize</function>
|
||||
|
|
Loading…
Reference in a new issue