php序列化数据返回到javascript
我认为当我序列化($userinfo)并将序列化数据保存在我的数据库中时我做了一些聪明的事情... $userinfo 是一个普通数组。但是我如何获取数据以便我的 javascript 可以使用它呢?
尝试
var userinfo = <?=unserialize(GetUserInfo(userId));?>;
GetUserInfo 是一个全局函数,它从数据库中获取序列化字符串。
I thought i did something smart when i serialize($userinfo) and saved the serialized data in my db... $userinfo is a plain array. but how do i get a hold of the data so my javascript can use it?
tried
var userinfo = <?=unserialize(GetUserInfo(userId));?>;
GetUserInfo is a global function that fetches the serialized string from the db.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试以下操作:
JavaScript 无法理解序列化的 PHP 数据,但它可以理解 JSON,因为它的格式是常规 JavaScript 对象。
Try the following:
JavaScript doesn't understand serialized PHP data but it does understand JSON as that is formated as a regular JavaScript object.