Saturday, February 28, 2009

Encoding - UTF8

How to make sure the whole site is in UTF-8.

Send the following header.
  1. header('Content-Type: text/html; charset=utf-8');  

Can be done with Zend Framework the following way in bootstrap:
  1. $response = new Zend_Controller_Response_Http;  
  2. $response->setHeader('Content–Type''text/html; charset=UTF-8'true);  
  3. self::$frontController->setResponse($response);  

  1. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />  

Setting the option form option:
  1. <form accept-charset="utf-8">  


In Zend_Form:
  1. $this->setAttrib('accept-charset''UTF-8');  

Making sure the database is also using UTF-8.
When setting up use:
  1. $db->query("SET NAMES 'utf8'");  

Zend_View can also be set to use UTF-8:
  1. $view = new Zend_View;  
  2. $view->setEncoding('UTF-8');  

Reference: http://www.phpwact.org/php/i18n/charsets

No comments: