<php
$doc=new DOMDocument();
$doc->load("testxml");
$latitude=$doc->getElementsByTagName("Latitude")->item(0)->nodeValue;
$longitude=$doc->getElementsByTagName("Longitude")->item(0)->nodeValue;
$precision=$doc->getElementsByTagName("Precision")->item(0)->nodeValue;
echo "Latitude:"$latitude"<br>";
echo "Longitude:"$longitude"<br>";
echo "Precision:"$precision"<br>";
>
<php
$str = "我爱我母亲,我爱我父亲";
$find = "我爱";
$findLen = strlen($find);
$tmp = stripos($str, $find);
echo '第一个"我爱"的位置'$tmp'<br />';
$tmp += $findLen;
$i = stripos($str, $find, $tmp);
echo '第二个"我爱"的位置'$i'<br />';
>
运行结果:
第一个"我爱"的位置0
第二个"我爱"的位置12
以为一个中文占两个字符,所以第二个“我爱”的位置是12
以上就是关于微信开发,php获取用户地理位置,求php解析xml并输出经纬度的方法全部的内容,包括:微信开发,php获取用户地理位置,求php解析xml并输出经纬度的方法、PHP中找字符串位置、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)