Trình điều khiển PHP của Microsoft (để tham khảo): http:// www .microsoft.com / en-us / download / details.aspx? id =20098
Nhưng nếu bạn không muốn (hoặc không thể) thay đổi trình điều khiển, hãy từ trang web này :
You need to increase the maximum size of a text column to be returned from
SQL Server by PHP. You can do this with a simple SQL query:
SET TEXTSIZE 2147483647
Which you can run with the following PHP (best run just after you make a
connection).
mssql_query("SET TEXTSIZE 2147483647");
A better way to work around the issue is to change the "textlimit" and
"textsize" settings within php.ini, like so:
mssql.textlimit = 2147483647
mssql.textsize = 2147483647
Trình điều khiển MSSQL của bạn đang cắt bớt văn bản. Nếu bạn không thể thay đổi kiểu dữ liệu, trình điều khiển, v.v., điều này sẽ khắc phục sự cố cho bạn.