mysqli里的mysqli_set_charset函数和自己在sql里设置SET NAMES有什么不同?


我以前一直是在每次连接之前使用 SET NAMES utf8 语句来设定字符集,但是在 mysqli 里有一个 mysqli_set_charset 函数就是干这个的,我以为它跟我自己设定是完全一样的,但是在它的文档note里发现

This is the preferred way to change the charset. Using mysqli_query() to set it (such as SET NAMES utf8) is not recommended.

看来这两者是有所不同的,到底区别在哪里呢?

mysqli utf-8 php mysql

salala 10 years, 10 months ago

Your Answer