mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
- Fixed bug#49117 (ambiguous documentation) (Patch by Niel Archer)
- Added note about mysqlnd not reading my.cnf/my.ini (Patch by Niel Archer) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@286830 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
6b9b2ac5ca
commit
776d125a72
1 changed files with 11 additions and 1 deletions
|
@ -88,7 +88,9 @@
|
|||
<simpara>
|
||||
The behaviour of functions with by-reference parameters called by value has
|
||||
changed. Where previously the function would accept the by-value argument,
|
||||
a warning is now emitted and all by-ref parameters are set to &null;.
|
||||
a fatal error is now emitted. Any previous code passing constants or
|
||||
literals to functions expecting references, will need altering to assign
|
||||
the value to a variable before calling the function.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -100,6 +102,14 @@
|
|||
authentication."</literal>
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
The new mysqlnd library does not read mysql configuration files
|
||||
(my.cnf/my.ini), as the older libmysql library does. If your code relies on
|
||||
settings in the configuration file, you can load it explicitly with the
|
||||
<function>mysqli_options</function> function.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
The trailing / has been removed from the <classname>SplFileInfo</classname>
|
||||
|
|
Loading…
Reference in a new issue