我在 cakephp 中工作,想用某些实际上是字符串格式的变量进行循环,我将它转换为 int,但在我运行时它仍然没有响应,这意味着循环内的“hi”没有打印......
$one = array();
echo intval($tolatitude[0]);
$start=intval($fromlatitude[0]);
$end=intval($tolatitude[0]);
for($i=(int)$start;$i<(int)$end;$i++)
{
//$one = $this->Place->find('all', array(
//'conditions' => array('Place.Latitude' => $i)
//));
//debug($one);
echo "Hi i m in loop";
}
如果有人知道请帮助我....