使用 PHP 的电话联系人
有没有办法让我使用 PHP 访问用户的电话联系人(例如从诺基亚手机)?我想建立一个可以获取用户电话簿的移动网站。
Is there a way for me to access a users phone contact like from a nokia phone using PHP? I want to build a mobile website that can get the users phone book.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PHP 不在用户的手机上运行,而是在您的服务器上运行。
您想要做的事情在 PHP 中是不可能的,并且由于安全限制,一般网站可能无法做到这一点。
PHP doesn't run on the user's phone, it runs on your server.
What you are looking to do is impossible in PHP, and due to security restrictions, probably impossible for web sites to do in general.
这是不可能的。
事实上,如果这是可能的话那就太可怕了。 PHP 正在远程网络服务器上运行,因此它根本无法访问您的联系人。
即使 JavaScript(在客户端上运行)也无法访问类似的东西,这也很好,因为它可以在你不知道的情况下将它们提交到随机服务器......
It is not possible.
Actually, it would be horrible if that was possible. PHP is running on the remote webserver, so it cannot access your contacts at all.
Even JavaScript (which runs on the client) is not able to access things like that which is also good since it would be able to submit them to a random server withour you knowing about it...