Skip to content

Instantly share code, notes, and snippets.

@mdunbavan
Created September 1, 2015 09:31
Show Gist options
  • Select an option

  • Save mdunbavan/b907d78b58cb9575e356 to your computer and use it in GitHub Desktop.

Select an option

Save mdunbavan/b907d78b58cb9575e356 to your computer and use it in GitHub Desktop.
object and array data
<?php
foreach(Post::all() as $postObject){
$start_time = $postObject['post_create_time'];
$end_time = $postObject['post_ended_time'];
$postData =
array(
'post' => 'title',
'start_time' => $start_time,
'end_time' => $end_time
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment