# thanks to david wright


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@156063 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Kenneth Schwartz 2004-04-15 02:30:57 +00:00
parent e6c7f8c1c7
commit 93dcc283fb

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.14 $ -->
<!-- $Revision: 1.15 $ -->
<appendix id="migration5">
<title>Migrating from PHP 4 to PHP 5</title>
@ -21,7 +21,7 @@
<title>Backward Incompatible Changes</title>
<para>
Although most existing PHP 4 code should work without changes, you should
pay attention to this backward imcompatible changes:
pay attention to the following backward incompatible changes:
</para>
<itemizedlist>
<listitem><simpara>
@ -29,7 +29,7 @@
the entire string as a needle.
</simpara></listitem>
<listitem><simpara>
Ilegal use of string offsets causes <constant>E_ERROR</constant> instead
Illegal use of string offsets causes <constant>E_ERROR</constant> instead
of <constant>E_WARNING</constant>.
</simpara></listitem>
<listitem><simpara>
@ -513,7 +513,7 @@ Action application/x-httpd-php "/php/php-cgi.exe"
<note>
<para>
The <link linkend="ref.tidy">Tidy</link> extension has also changed its
API completly.
API completely.
</para>
</note>
</section>
@ -527,7 +527,7 @@ Action application/x-httpd-php "/php/php-cgi.exe"
</para>
<itemizedlist>
<listitem><simpara>
mail.force_extra_paramaters - Force the addition of the specified
mail.force_extra_parameters - Force the addition of the specified
parameters to be passed as extra parameters to the sendmail binary. These
parameters will always replace the value of the 5th parameter to
<function>mail</function>, even in safe mode
@ -558,7 +558,7 @@ Action application/x-httpd-php "/php/php-cgi.exe"
There were some changes in PHP 5 regarding databases (MySQL and SQLite).
</para>
<para>
In PHP 5 the MySQL client libraries are not bundled, because of licence
In PHP 5 the MySQL client libraries are not bundled, because of license
problems and some others. For more information, read the <link
linkend="faq.databases.mysql.php5">FAQ entry</link>.
</para>
@ -568,7 +568,7 @@ Action application/x-httpd-php "/php/php-cgi.exe"
</para>
<para>
Since PHP 5, the <link linkend="ref.sqlite">SQLite</link> extension is
built-in PHP. SQLite is embeddable SQL database engine and is not a
built-in PHP. SQLite is an embeddable SQL database engine and is not a
client library used to connect to a big database server (like MySQL or
PostgreSQL). The SQLite library reads and writes directly to and from the
database files on disk.