是否可以捕获 Opera mini 8/win mob 6 的网络签名
我想知道是否有人知道一种在 winmobile 6 上从 Opera mini 8 捕获客户签名并将签名将图像保存到服务器的方法?
如果做不到这一点,我将不得不创建一个客户端应用程序,但这有点违背了目的。
I was wondering if anyone knew of a method of capturing a customer signature from opera mini 8 on winmobile 6 , and having the signature save the image to the server?
Failing that, I'm going to have to create a client side app, but that defeats the purpose a little.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是测试他们是否在 Windows Mobile 上使用 Opera Mini?
为此,您需要一个 useragent 检测脚本
if (strpos(strtolower($_SERVER['ALL_HTTP']),'OperaMini')>0)
{
$移动=真;
if
((strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'windows')>0)&& (!strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'电话')>; 0) )
{
$移动=假;
}
?>
you mean testing if they're using opera mini on windows mobile?
for that you want a useragent detection script
<?php
if (strpos(strtolower($_SERVER['ALL_HTTP']),'OperaMini')>0)
{
$mobile=true;
}
if ((strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'windows')>0)&& (!strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'phone')>0) )
{
$mobile=false;
}
?>