如何将数组转换为索引数组

I try to convert an array to an indexed array but none of the array functions I found can solve my problem

I have this array

Array(
  [no_discount] => 0
  [manufacturers_id] => 2
  [id] => 3
)
Array(
  [no_discount] => 1
  [manufacturers_id] => 1
  [id] => 1
)

and I would like to convert this array to

Array(
  [0] => Array(
    [no_discount] => 0
    [manufacturers_id] => 2
    [id] => 3
  )
  [1] => Array(
    [no_discount] => 1
    [manufacturers_id] => 1
    [id] => 1
  )
)

Is there a simple array function or do I have use a loop?

loop - or write you own ..

$tgt = [];
foreach ( $src as $t) { $tgt[] = $t; }

I'm not sure how you are getting your array but will this work for you?

        $main_array = array();

        $one = Array(
          "no_discount" => 0,
          "manufacturers_id" => 2,
          "id" => 3,
        );

        $two = Array(
          "no_discount" => 1,
          "manufacturers_id" => 1,
          "id" => 1,
        );


        array_push($main_array, $one);
        array_push($main_array, $two);


        print_r($main_array);