¡@

Home 

php Programming Glossary: utf8_bin

UTF8 workflow PHP, MySQL summarized [closed]

http://stackoverflow.com/questions/11013537/utf8-workflow-php-mysql-summarized

should it really be utf8_general_ci or rather utf8_bin is there something missing in the above workflow sources http.. want when working with strings. utf8_general_ci vs. utf8_bin only makes a difference when collating i.e. sorting and comparing.. when collating i.e. sorting and comparing strings. With utf8_bin data is treated in binary form i.e. only identical data is identical...

Storing and displaying unicode string (हिनà?दà?) using PHP and MySQL

http://stackoverflow.com/questions/1198701/storing-and-displaying-unicode-string-using-php-and-mysql

and set its encoding to UTF 8 and also the collation to utf8_bin . I added a varchar field in the table and set it to accept.. `hindi` `data` varchar 1000 character set utf8 collate utf8_bin default NULL ENGINE InnoDB DEFAULT CHARSET latin1 INSERT INTO..

What is the best collation to use for MySQL (with PHP)

http://stackoverflow.com/questions/367711/what-is-the-best-collation-to-use-for-mysql-with-php

8 ones but I have used utf8_unicode_ci utf8_general_ci and utf8_bin before. php mysql encoding collation share improve this question.. in the language and performance. The only special one is utf8_bin which is for comparing characters in binary format. utf8_general_ci..