- 浏览: 45309 次
- 性别:
- 来自: 北京
文章列表
function _rand(){
$num = rand();
if($num != 0){
return $num;
}
_rand();
}
$n = _rand();
echo $n/($n+_rand());
?>
还有一种方式也很好的。
while($n == 0 || $u==0){
$n = rand();
$u = rand();
}
echo $n/($n+$u);
显然js有自带的函数解决这个问题。
一点坐标发散后得到范围, map寻找
- 博客分类:
- php
/**
* 坐标计算
* date :Nove 11,2011--- 光棍节
* author:snuser
*/
/**
示例:
$lat = 0.1;
$lng = 116.085239;
$lat2 = 0.2;
$lng2 = 116.085239;
$data = Coordinate::getDisCoord($lng, $lat, 1000);
$distance = Coordinate::getDistance($lng, $lat, $lng2, $lat2);
*/ ...
/*author:snuser return array , need tool about 'dateFormat.js' */
/*
ex:
date = new Date();
console.log( date.dateChange( "lastmonth" ) );
*/
function dateChange( part ) {
var beginTime;
var now = new Date();
var month = now.getMonth();
var year = now.getF ...