php method to set mssql encoding: 1. Open the "php.ini" file and modify the encoding to "mssql.charset = "UTF-8""; 2. Through "ini_set('mssql.charset', 'UTF-8')" method to set the encoding.
Recommended: "PHP Video Tutorial"
php Set mssql encoding to solve the garbled problem mssql_connect charset Utf8
When mssql is used to store data using nchar or nvarchar, because nchar or nvarcha does not support UCS-2 (that is, SQLServer will not store it in UTF-8 format)
will cause garbled characters to appear after PHP obtains the details. The performance is: Chinese characters will become ???? This
and there is no method similar to mysql_query("set charset utf8");.
Solution:
1. Directly modify the php.ini file and directly modify mssql.charset to mssql.charset = "UTF-8"
2. You can also pass ini_set('mssql.charset', 'UTF-8');
Note that the utf-8 option is case-sensitive.
The above is the detailed content of How to set mssql encoding in php. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
