| 
 | mysqli::character_set_namemysqli_character_set_nameReturns the default character set for the database connection DescriptionObject oriented style 
   string mysqli::character_set_name
    ( void
   ) Procedural style 
   string mysqli_character_set_name
    ( mysqli  $link)Returns the current character set for the database connection. Parameters
 
 Return ValuesThe default character set for the current connection ExamplesExample #1 mysqli::character_set_name example Object oriented style 
<?phpProcedural style 
<?phpThe above examples will output: Current character set is latin1_swedish_ci See Also
 
 |