Created
March 3, 2016 00:15
-
-
Save webmechanicx/5f157420d20f0077229d to your computer and use it in GitHub Desktop.
Simple Demonstration object to Array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$post_id = array((object) (array( | |
'index_id' => 'Mahfuz', | |
)), (object) (array( | |
'index_id' => '[email protected]', | |
)), (object) (array( | |
'index_id' => 142, | |
))); | |
foreach ($post_id as $key => $value) { | |
$result[] = $value->index_id; | |
} | |
print_r($result); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment