| 
 
  7.83.70 pg_set_client_encoding()
     Choisit l'encodage du client
    [ Exemples avec pg_set_client_encoding ]   PHP 3 CVS only, PHP 4 >= 4.0.3 
int
 pg_set_client_encoding (
resource
 
connection
 ,
string
 
encoding
 )
pg_set_client_encoding
  fixe l'encodage du client.
     Elle retourne 0 en cas de succès, et -1 sinon.
     
encoding
  est l'encodage du client, et peut être
     SQL_ASCII, EUC_JP, EUC_CN, EUC_KR, EUC_TW, UNICODE,
     MULE_INTERNAL, LATINX (X=1...9), KOI8, WIN, ALT,
     SJIS, BIG5, WIN1250.
     
| Note |  | 
 
      Cette fonction requiert PHP-4.0.2 ou plus récent et PostgreSQL-7.0 ou
      plus récent.
      
      Jadis,  
pg_set_client_encoding
  s'appelait
      pg_setclientencoding().
      
 |   
     Voir aussi 
      
pg_client_encoding
 .
     
 |