Heim >Backend-Entwicklung >PHP-Tutorial >Wie kann man Array-Schlüsseln in PHP effizient einen String voranstellen?
Effiziente Schlüsselpräfixierung für Array
Um allen Schlüsseln in einem flachen Array eine Zeichenfolge voranzustellen, berücksichtigen Sie die folgenden Ansätze:
Einzellösung:
<code class="php">$prefix = "prefix"; $array = array_combine( array_map(fn($k) => $prefix . $k, array_keys($array)), $array );</code>
Iterativer Ansatz:
<code class="php">$prefix = "prefix"; foreach ($array as $k => $v) { $array[$prefix . $k] = $v; unset($array[$k]); }</code>
Historischer Ansatz (vor PHP 5.3 ):
<code class="php">class KeyPrefixer { private $prefix; public function __construct($prefix) { $this->prefix = (string)$prefix; } public static function prefix(array $array, $prefix) { $prefixer = new KeyPrefixer($prefix); return $prefixer->mapArray($array); } public function mapArray(array $array) { return array_combine( array_map(array($this, 'mapKey', array_keys($array)), $array ); } public function mapKey($key) { return $this->prefix . (string)$key; } }</code>
Das obige ist der detaillierte Inhalt vonWie kann man Array-Schlüsseln in PHP effizient einen String voranstellen?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!