Oracle 5.0 Reference Manual page 2790

Table of Contents

Advertisement

mysqlnd_uh_set_connection_proxy
mysqli_autocommit
20.7.8.7.40.
MysqlndUhConnection::setCharset
Copyright 1997-2012 the PHP Documentation Group. [2230]
MysqlndUhConnection::setCharset
Sets the default client character set
Description
public bool MysqlndUhConnection::setCharset(
mysqlnd_connection connection,
string charset);
Sets the default client character set.
Parameters
connection
charset
Return Values
Returns
TRUE
Examples
Example 20.375.
<?php
class proxy extends MysqlndUhConnection {
public function setCharset($res, $charset) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
$ret = parent::setCharset($res, $charset);
printf("%s returns %s\n", __METHOD__, var_export($ret, true));
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
$mysqli = new mysqli("localhost", "root", "", "test");
$mysqli->set_charset("latin1");
?>
The above example will output:
proxy::setCharset(array (
0 => NULL,
1 => 'latin1',
))
proxy::setCharset returns true
See Also
mysqlnd_uh_set_connection_proxy
mysqli_set_charset
Mysqlnd user handler plugin (mysqlnd_uh)
Mysqlnd connection handle. Do not modify!
The charset to be set as default.
on success. Otherwise, returns
MysqlndUhConnection::setCharset
FALSE
example
2770

Advertisement

Table of Contents
loading

This manual is also suitable for:

Mysql 5.0

Table of Contents