PHP MS SQL ID格式问题
我正在将记录从为 ASP.net 应用程序构建/由 ASP.net 应用程序构建的遗留 MSSQL 数据库中绘制到 PHP 中。
ASP 中的 id 显示为一长串数字,但当由 PHP 检索时,其形式如下:
3;Í}±¯I©ûzƒgŸó
I'm drawing records into PHP from a legacy MSSQL database built for/by an ASP.net application.
The id's in ASP appear as long strings of numbers but when retrieved by PHP are in a form like so:
3;Í}±¯I©ûzƒgŸó
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 PHP 7 及更高版本中,您现在必须“告诉”PDO 在返回 GUID 时使用 GUID 的字符串表示形式,而不是默认的二进制表示形式。
请参阅:https://github.com/php/php-src/pull/2001< /a>
解决方案:
In PHP 7 and up you now have to "tell" PDO to use the string representation of the GUID when returning it as opposed to the default binary representation.
See: https://github.com/php/php-src/pull/2001
Solution:
我打赌这些 ID 实际上是 GUID——如果是这样,您将需要使用 mssql-guid-string (或者如果您使用的是 PHP 5.3 或更高版本,您将需要使用 Microsoft 的 SqlSrv 扩展名,它应该自动转换 GUID 字段。)
I'm going to wager that the IDs are actually GUIDs -- if so you will want to convert your GUIDs to strings using mssql-guid-string (or if you are using PHP 5.3 or later you will want to use Microsoft's SqlSrv extension, which should convert GUID fields automatically.)
使用此功能。它返回集中的 mssql id。
示例:G4G3G2G1-G6G5-G8G7-G9G10-G11G12G13G14G15G16
Use this function. It retuns cenverted mssql id.
Example: G4G3G2G1-G6G5-G8G7-G9G10-G11G12G13G14G15G16
在连接中设置以下属性
PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER
作为真正的
来源 https://github.com/php/php-src/pull/2001
set in connection following attribute
PDO::DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER
as true
source https://github.com/php/php-src/pull/2001