在 PHP 中循环特定关联数组

发布于 2025-01-04 11:12:14 字数 925 浏览 1 评论 0原文

我正在尝试使用 foreach 仅循环遍历 PHP 中的特定子数组。示例数组:

$testData = array(  
    $test1=array(  
        'testname'=>'Test This',
        'testaction'=>'create user',
         $testData = array(
             'item'=>'value',
             'foo'=>'bar',
             'xyz'=>'value'
         ),
         $anotherArray = array()
     ),
     $test2=array(  
        'testname'=>'Test That',
        'testaction'=>'get user',
         $testData = array(
             'item'=>'value',
             'foo'=>'bar',
             'xyz'=>'value'
         ),
         $anotherArray = array()
     )
);

现在我将完成每个测试并根据名称和操作设置一些逻辑,但随后需要对数据进行多次测试。不知道如何只获取 $test1 的 $testData 而不是 $test1 的 $anotherArray 数据。我有以下内容,但不起作用:

foreach($testData as $test => $section){
    foreach($section['testData'] as $field => $value){
        \\code
    }
}

感谢任何帮助!谢谢!

I am trying to loop through only a specific sub array in PHP with foreach. Example array:

$testData = array(  
    $test1=array(  
        'testname'=>'Test This',
        'testaction'=>'create user',
         $testData = array(
             'item'=>'value',
             'foo'=>'bar',
             'xyz'=>'value'
         ),
         $anotherArray = array()
     ),
     $test2=array(  
        'testname'=>'Test That',
        'testaction'=>'get user',
         $testData = array(
             'item'=>'value',
             'foo'=>'bar',
             'xyz'=>'value'
         ),
         $anotherArray = array()
     )
);

And now I am going to go through each test and set some logic based on the name and action, but then need to do several tests on the data. Not sure how to only get $test1's $testData and not $test1's $anotherArray data. I have the following but it doesn't work:

foreach($testData as $test => $section){
    foreach($section['testData'] as $field => $value){
        \\code
    }
}

Any help is appreciated! Thanks!

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

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

发布评论

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

评论(1

渡你暖光 2025-01-11 11:12:14

试试这个:

$testData = array(  
'test1'=>array(  
    'testname'=>'Test This',
    'testaction'=>'create user',
    'testData' => array(
         'item'=>'value',
         'foo'=>'bar',
         'xyz'=>'value'
     ),
     'anotherArray' => array()
 ),
 'test2'=>array(  
    'testname'=>'Test That',
    'testaction'=>'get user',
    'testData' => array(
         'item'=>'value',
         'foo'=>'bar',
         'xyz'=>'value'
     ),
     'anotherArray' => array()
 )
);

Try this instead:

$testData = array(  
'test1'=>array(  
    'testname'=>'Test This',
    'testaction'=>'create user',
    'testData' => array(
         'item'=>'value',
         'foo'=>'bar',
         'xyz'=>'value'
     ),
     'anotherArray' => array()
 ),
 'test2'=>array(  
    'testname'=>'Test That',
    'testaction'=>'get user',
    'testData' => array(
         'item'=>'value',
         'foo'=>'bar',
         'xyz'=>'value'
     ),
     'anotherArray' => array()
 )
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文