diff options
author | Davey Shafik <me@daveyshafik.com> | 2017-01-10 14:23:36 -0800 |
---|---|---|
committer | Davey Shafik <me@daveyshafik.com> | 2017-01-10 14:23:36 -0800 |
commit | 6abb2914abdde4772bacedad1ebc00efc6f25186 (patch) | |
tree | dad6eb2c35f9884bd93f3bd92202c8083bb3626f | |
parent | 9a75d2cf1da5dc9bea6c4a97df5b28911bc937c2 (diff) | |
download | php7-mysql-shim-6abb2914abdde4772bacedad1ebc00efc6f25186.zip php7-mysql-shim-6abb2914abdde4772bacedad1ebc00efc6f25186.tar.gz php7-mysql-shim-6abb2914abdde4772bacedad1ebc00efc6f25186.tar.bz2 |
Fix typo, remove outdated caveat
-rw-r--r-- | README.md | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -33,5 +33,4 @@ Once the file is included, it will create `mysql_*` functions if they don't alre - Calls to `is_resource()` and `get_resource_type()` on MySQL connections and results will fail as these are now their `mysqli` equivalents. - Some errors are now from `ext/mysqli`, and others are `E_USER_WARNING` instead of `E_WARNING`. - You must use the `mysqli.*` INI entries instead of `mysql.*` (e.g. `mysqli.default_user` instead of `mysql.default_user`) -- If no host, username, password parameter is provided when using the `mysql_*` functions, the default values from the corresponding `mysqli.*` settings from `php.ini` file will be use (e.g. `mysqli.default_host`, `mysqli.default_user`, `mysqli.default_pw`) -- Column lengths reported by `mysql_field_len()` assume `latin1` +- If no host, username, password parameter is provided when using the `mysql_*` functions, the default values from the corresponding `mysqli.*` settings from `php.ini` file will be used (e.g. `mysqli.default_host`, `mysqli.default_user`, `mysqli.default_pw`)
\ No newline at end of file |