如何从 php 数组形成对象

使用表数组的索引(代码中的$key)并使用 取消设置unset($tables[$key]。


function availableTables($tables, $tablesWithDate) {

        $tablesReturn = array();


        foreach($tables as $key => $table) {

          foreach($tablesWithDate as $twd) {

             if($table['table_no'] == $twd['number']){

               unset($tables[$key]);

             } else {

               echo "false";

             }

          }

        }

        return $tables;

      }


吃鸡游戏
浏览 109回答 1
1回答

慕神8447489

我想这应该是这样的:$options = []; foreach ($eventCats as $cat) {    // Add an element to array under key `$cat->category`    // Value of the element will be result of calling `__` function    $options[$cat->category] = __( $cat->category, 'plugin-domain');}
打开App,查看更多内容
随时随地看视频慕课网APP