Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a two-element array - $time

echo var_dump($time) :

array
  0 => 
    array
      'otw' => string '12:00' (length=5)
      'zam' => string '15:00' (length=5)
 1 => 
    array
      'otw' => string '16:00' (length=5)
      'zam' => string '18:00' (length=5)

How convert each element of $time array to timestamp?

echo var_dump($time) should look like:

array
  0 => 
    array
      'otw' => timestamp 'timestampvalue' (length=)
      'zam' => timestamp 'timestampvalue' (length=)
 1 => 
    array
      'otw' => timestamp 'timestampvalue' (length=)
      'zam' => timestamp 'timestampvalue' (length=)
share|improve this question
2  
Have a look at array_walk_recursive() – MrAzulay Jul 31 '12 at 13:57
You're not expecting us to code a solution for you, are you? Maybe take a good look at the documentation: php.net/manual/en/function.array-walk-recursive.php – user1093284 Jul 31 '12 at 14:02

closed as not a real question by deceze, feeela, casperOne Jul 31 '12 at 14:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

simply use array_walk_recursive

array_walk_recursive($your_array, function(&$element) {
  // notice: this will use the date of today and add the time to it.
  $element = strtotime($element);
  // $element = strtotime($element, 0); // use 1.1.1970 as current date
});
share|improve this answer

Or using array_map()

function arrayToTimestamps($array)
{
    return array(strtotime($array['otw']), strtotime($array['zam']));
}
$newArray = array_map('arrayToTimestamps', $array);
share|improve this answer
this does not work, because array_walk_recursive tries to pass an second argument – MarcDefiant Jul 31 '12 at 14:07
Yes, the whole thing was wrong, this is what I meant though. – MrAzulay Jul 31 '12 at 14:12

Not the answer you're looking for? Browse other questions tagged or ask your own question.