diff --git a/reference/eio/functions/eio-grp.xml b/reference/eio/functions/eio-grp.xml index 2d4bbf9739..a395eb2350 100644 --- a/reference/eio/functions/eio-grp.xml +++ b/reference/eio/functions/eio-grp.xml @@ -4,7 +4,7 @@ eio_grp - Createsa request group. + Creates a request group. diff --git a/reference/ftp/functions/ftp-pasv.xml b/reference/ftp/functions/ftp-pasv.xml index 51b37cd543..d7bfe63aa6 100644 --- a/reference/ftp/functions/ftp-pasv.xml +++ b/reference/ftp/functions/ftp-pasv.xml @@ -20,7 +20,7 @@ Please note that ftp_pasv can only be called after a - successfull login or otherwise it will fail. + successful login or otherwise it will fail. diff --git a/reference/libxml/functions/libxml-get-errors.xml b/reference/libxml/functions/libxml-get-errors.xml index 16360b7702..4fa4e212f2 100644 --- a/reference/libxml/functions/libxml-get-errors.xml +++ b/reference/libxml/functions/libxml-get-errors.xml @@ -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) { diff --git a/reference/session/sessionhandlerinterface/read.xml b/reference/session/sessionhandlerinterface/read.xml index ccf95dd0dc..664d57e76b 100644 --- a/reference/session/sessionhandlerinterface/read.xml +++ b/reference/session/sessionhandlerinterface/read.xml @@ -28,7 +28,7 @@ The data returned by this method will be decoded internally by PHP using the unserialization method specified in session.serialize_handler. - The resultig data will be used to populate the $_SESSION superglobal. + The resulting data will be used to populate the $_SESSION superglobal. Note that the serialization scheme is not the same as unserialize