How to correctly loop through array keys in PHP

If I have an array with several keys and values, for example.

$array = array(
  'key1' => 'value1',
  'key2' => 'value2',
);

Are there any standards on how to quote an array when I use only keys? Solution 1:

foreach(array_keys($array) as $array_key) {
  echo $array_key;
}

Solution 2:

foreach($array as $array_key => $array_value) {
  echo $array_key;
}

I see an advantage in solution 1, since it does not call an unused variable $array_value. Is there a performance difference between the two? Are there any standards on how to do this?

+4
source share
1 answer

From my quick and dirty test, I did the following 50 times:

Solution 1 (worst):

foreach (array_keys($array) as $array_key) {
  echo $array_key;
}

Array size: 1,000,000

  • Min: 0.11363291740417
  • Avg: 0.11681462287903
  • Max. 0.14569497108459

Array Size: 9999999

  • Min: 1.3098199367523
  • Avg: 1.3250577354431
  • Max. 1.3673560619354

Solution 2 (medium):

foreach ($array as $array_key => $array_value) {
  echo $array_key;
}

Array size: 1,000,000

  • Min: 0.10167503356934
  • Avg: 0.10356130123138
  • Max. 0.11027193069458

Array Size: 9999999

  • Min: 1.2077870368958
  • Avg: 1.2256314325333
  • Max. 1.2829539775848

3 ( ):

$array_keys = array_keys($array);
foreach ($array_keys as $array_key) {
  echo $array_key;
}

: 1000000

  • : 0.090911865234375
  • Avg: 0.092938437461853
  • . 0.097810983657837

: 9999999

  • : 1.0793349742889
  • Avg: 1.0941110134125
  • . 1.1402878761292

, , 3 , :)

, .


:

<?php
class DirtyBenchmarker {
  private $results = [];
  private $size_of_array;

  public function __construct($size_of_array)
  {
    $this->size_of_array = $size_of_array;
    echo 'Size of array: ' .  $this->size_of_array . PHP_EOL;
  }

  private function solution1() {
    $array = range(0, $this->size_of_array - 1);
    ob_start();
    $start = microtime(true);
    foreach (array_keys($array) as $array_key) {
      echo $array_key;
    }
    $finish = microtime(true) - $start;
    $echod = ob_get_clean();
    $this->results['solution1'][] = $finish;
  }

  private function solution2() {
    $array = range(0, $this->size_of_array - 1);
    ob_start();
    $start = microtime(true);
    foreach ($array as $array_key => $array_value) {
      echo $array_key;
    }
    $finish = microtime(true) - $start;
    $echod = ob_get_clean();
    $this->results['solution2'][] = $finish;
  }

  private function solution3() {
    $array = range(0, $this->size_of_array - 1);
    $array_keys = array_keys($array);
    ob_start();
    $start = microtime(true);
    foreach ($array_keys as $array_key) {
      echo $array_key;
    }
    $finish = microtime(true) - $start;
    $echod = ob_get_clean();
    $this->results['solution3'][] = $finish;
  }

  public function benchmark() {
    $this->solution1();
    $this->solution2();
    $this->solution3();
  }

  public function getResults()
  {
    echo PHP_EOL . 'Solution 1:' . PHP_EOL;
    echo 'Min: ' . min($this->results['solution1']) . PHP_EOL;
    echo 'Avg: ' . array_sum($this->results['solution1']) / count($this->results['solution1']) . PHP_EOL;
    echo 'Max: ' . max($this->results['solution1']) . PHP_EOL;

    echo PHP_EOL . 'Solution 2:' . PHP_EOL;
    echo 'Min: ' . min($this->results['solution2']) . PHP_EOL;
    echo 'Avg: ' . array_sum($this->results['solution2']) / count($this->results['solution2']) . PHP_EOL;
    echo 'Max: ' . max($this->results['solution2']) . PHP_EOL;

    echo PHP_EOL . 'Solution 3:' . PHP_EOL;
    echo 'Min: ' . min($this->results['solution3']) . PHP_EOL;
    echo 'Avg: ' . array_sum($this->results['solution3']) / count($this->results['solution3']) . PHP_EOL;
    echo 'Max: ' . max($this->results['solution3']) . PHP_EOL;
  }
}

$benchmarker = new DirtyBenchmarker(1000000);
$runs = 50;
for ($i = 0; $i < $runs; $i++) {
  $benchmarker->benchmark();
}
$benchmarker->getResults();

$benchmarker = new DirtyBenchmarker(9999999);
$runs = 50;
for ($i = 0; $i < $runs; $i++) {
  $benchmarker->benchmark();
}
$benchmarker->getResults();
+3

Source: https://habr.com/ru/post/1689401/


All Articles