数组的高效键前缀
要将字符串添加到平面数组中的所有键前面,请考虑以下方法:
单行解决方案:
<code class="php">$prefix = "prefix"; $array = array_combine( array_map(fn($k) => $prefix . $k, array_keys($array)), $array );</code>
迭代方法:
<code class="php">$prefix = "prefix"; foreach ($array as $k => $v) { $array[$prefix . $k] = $v; unset($array[$k]); }</code>
历史方法(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>
以上是如何在 PHP 中有效地将字符串添加到数组键前面?的详细内容。更多信息请关注PHP中文网其他相关文章!