Join Up!
96655 members and counting!

 
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links 
search for in the  
previousmysql_change_usermysql_closenext
Last updated: Tue, 29 Oct 2002
view the printer friendly version or the printer friendly version with notes or change language to Czech | Finnish | German

mysql_client_encoding

(PHP 4 CVS only)

mysql_client_encoding -- Returns the name of the character set

Description

int mysql_client_encoding ( [resource link_identifier])

mysql_client_encoding() returns the default character set name for the current connection.

Ejemplo 1. mysql_client_encoding() example

<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
$charset = mysql_client_encoding($link);
printf ("current character set is %s\n", $charset);
?>

The above example would produce the following output:
current character set is latin1

See also: mysql_real_escape_string()

User Contributed Notes
mysql_client_encoding
add a note about notes
There are no user contributed notes for this page.
previousmysql_change_usermysql_closenext
Last updated: Tue, 29 Oct 2002
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by: http://phpbuilder.com/
Last updated: Thu Oct 31 18:34:28 2002 EST