php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #48543 Introduction of a substitute for array_change_key_case which takes a callback.
Submitted: 2009-06-13 11:21 UTC Modified: 2014-12-30 10:41 UTC
From: simon at stienen dot name Assigned:
Status: No Feedback Package: Arrays related
PHP Version: 5.3.0RC3 OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: simon at stienen dot name
New email:
PHP Version: OS:

 

 [2009-06-13 11:21 UTC] simon at stienen dot name
Description:
------------
While array_change_key_case allows for changing array keys in regards to capitalization, it is very limited in its function.
Therefore I request the introduction of a new function (for the sake of the discussion, I'll call it "array_change_keys") that takes an array and a callback and then calls the callback for each key, passing the key as a parameter (possibly also passing the value as another parameter) and replaces the old key with the return value of the function call - under the same constraints as mentioned in http://php.net/array_change_key_case in terms of replacing elements with colliding keys.

Signature:
array array_change_keys  ( array $input, callback $callback )

Reproduce code:
---------------
<?php

$a = array(
  'peter' => 'm, 71',
  'paul'  => 'm, 72',
  'mary'  => 'f, 73'
);

$b = array_change_keys($a, 'strlen');


Expected result:
----------------
$b === array(
  5 => 'm, 71',
  4 => 'f, 73'
)

('paul' was overridden by the element 'mary' which resulted in the same key name)


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2014-04-16 21:57 UTC] levim@php.net
-Status: Open +Status: Feedback -Package: Feature/Change Request +Package: Arrays related
 [2014-04-16 21:57 UTC] levim@php.net
Is this something you are still interested in?
 [2014-12-30 10:41 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 19:01:29 2024 UTC