如何循环遍历具有多个值的数组

发布于 2024-11-16 10:27:04 字数 380 浏览 0 评论 0原文

我知道这个问题很简单,但我对数组缺乏经验,并且遇到困难。无论如何,我有这个数组:

$variables=array("$value1" => "int",$value2 => "var",$value3 => "int");

我想循环遍历它,并且对于每个 $value 我想添加

$stmt->bindValue(1,$value, PDO::PARAM_INT); if $value是 'int' 或

$stmt->bindValue(1,$value); 如果 $value 是 'var'

并且在循环变量时 '1' 增加。有谁知道该怎么做?

I know this question is simple, but I have little experience with arrays and am having difficulty. Anyway I have this array:

$variables=array("$value1" => "int",$value2 => "var",$value3 => "int");

I want to cycle through it and for each $value I would like to add

$stmt->bindValue(1,$value, PDO::PARAM_INT); if $value is 'int' or

$stmt->bindValue(1,$value); if $value is 'var'

and have the '1' increase as it cycles through the variables. Does anyone know how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

dawn曙光 2024-11-23 10:27:04

也许是这样的:

$count = 1;
foreach ($variables as $key => $value){

  switch ($value) {
        case "int":
            $stmt->bindValue($count, $value, PDO::PARAM_INT); 
          break; 

        case "var":            
            $stmt->bindValue($count, $value);      
         break;

        default:
           exit("Invalid value");            

    }                
          $count++; 

}

Maybe something like this:

$count = 1;
foreach ($variables as $key => $value){

  switch ($value) {
        case "int":
            $stmt->bindValue($count, $value, PDO::PARAM_INT); 
          break; 

        case "var":            
            $stmt->bindValue($count, $value);      
         break;

        default:
           exit("Invalid value");            

    }                
          $count++; 

}
美男兮 2024-11-23 10:27:04

foreach 循环可让您循环遍历数组。 foreach ($array as $k=>$v) 语法可让您定义一个变量来保存当前键 ($k) 和一个用于保存当前值 ( $v)。我还使用了一个在每个周期中递增的简单变量 ($i)。

然后使用简单的 if-elseif 组合来执行不同的操作。

$i=1;
foreach ($variables as $k=>$v) {
    if ($v=='int') {
        $stmt->bindValue($i, $k, PDO::PARAM_INT);
    }
    elseif ($v=='var') {
        $stmt->bindValue($i, $k);
    }
    $i++;
}

这可以进一步优化,我想展示逻辑。

A foreach loop lets you loop through your array. The foreach ($array as $k=>$v) syntax lets you define a variable to hold the current key ($k) and one for the current value ($v). I also used a simple variable that is incremented in every cycle ($i).

Then a simple if-elseif combo is used to do something different.

$i=1;
foreach ($variables as $k=>$v) {
    if ($v=='int') {
        $stmt->bindValue($i, $k, PDO::PARAM_INT);
    }
    elseif ($v=='var') {
        $stmt->bindValue($i, $k);
    }
    $i++;
}

This can be optimized further, I wanted to show the logic.

梦回梦里 2024-11-23 10:27:04

简单的循环应该可以做到

$x=0;
foreach($variables as $key=>$value)
{
  if($value=="var")
   {
     $stmt->bindValue($x,$key);
   }
   else
   { 
      $stmt->bindValue($x,$value, PDO::PARAM_INT);
   }
  $x++;
}

Simple loop should do it

$x=0;
foreach($variables as $key=>$value)
{
  if($value=="var")
   {
     $stmt->bindValue($x,$key);
   }
   else
   { 
      $stmt->bindValue($x,$value, PDO::PARAM_INT);
   }
  $x++;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文