如何回显php数组

I have array

array(2) {
  ["Smiley TV"]=>
  array(2) {
    ["Speed"]=>
    array(2) {
      ["download"]=>
      string(4) "9510"
      ["upload"]=>
      string(5) "33775"
    }
    ["Turbo"]=>
    array(2) {
      ["download"]=>
      string(4) "2427"
      ["upload"]=>
      string(5) "19696"
    }
  }
  ["Victory Media"]=>
  array(1) {
    ["Speed"]=>
    array(2) {
      ["download"]=>
      string(4) "4144"
      ["upload"]=>
      string(5) "80445"
    }
  }
}

How i can echo this array in the table

enter image description here

I this array i have name of partners( smiley tv/ victory media) and traffic(Speed/turbo) and download/upload values, how can i represent this data to the this table, with using foreach(because pertners and traffic can be more than two). So i need represent all partners at the head of this table traffic at the left and speed is under the partners.