见了鬼了, $_request的有关问题
程序员文章站
2024-01-28 20:51:10
...
见了鬼了, $_request的问题.
$counter =0;
$temp = 0;
while(!is_null ($_REQUEST[ 'thisAnswer_id '. ++$counter]));
{
++$temp;
echo "~~ temp is ".$temp. "~~ ";
echo "~~ Counter is " .$counter. "~~ ";
$thisAnswer_id = array($counter => $_REQUEST[ 'thisAnswer_id '.$counter]);
?>
输出结果是:
~~~ temp is 1 ~~~
~~~ counter is 3 ~~~
而且循环仅仅执行一次, 其实前面会传过来好几个值呢.
做这个的目的是想让前一页传过来的许多个属性相同的值用循环的方法接收并且存入数组中.
请高人给看看这是怎么回事啊, 谢谢
------解决方案--------------------
while(!is_null ($_REQUEST[ 'thisAnswer_id '. ++$counter]));
这行后面的 "; "号去掉....
后面还差个 } 号.
$counter =0;
$temp = 0;
while(!is_null ($_REQUEST[ 'thisAnswer_id '. ++$counter]));
{
++$temp;
echo "~~ temp is ".$temp. "~~ ";
echo "~~ Counter is " .$counter. "~~ ";
$thisAnswer_id = array($counter => $_REQUEST[ 'thisAnswer_id '.$counter]);
?>
输出结果是:
~~~ temp is 1 ~~~
~~~ counter is 3 ~~~
而且循环仅仅执行一次, 其实前面会传过来好几个值呢.
做这个的目的是想让前一页传过来的许多个属性相同的值用循环的方法接收并且存入数组中.
请高人给看看这是怎么回事啊, 谢谢
------解决方案--------------------
while(!is_null ($_REQUEST[ 'thisAnswer_id '. ++$counter]));
这行后面的 "; "号去掉....
后面还差个 } 号.
相关文章
相关视频
- 关于中英数字混的字串符分割问题_PHP教程
- PHP+TEXT留言本(三)_PHP教程
- 应用PHP标签模板实现什么任务_PHP教程
- php入门教程 精简版_PHP教程
- 见了鬼了, $_request的有关问题
上一篇: JavaScript处理异步的几种方法
下一篇: 关于手机浏览的网站解决办法