Skip to content

Instantly share code, notes, and snippets.

@5a494d
Created January 14, 2017 00:48
Show Gist options
  • Save 5a494d/cc1e9ec41f646f8c7450cbb1f78238df to your computer and use it in GitHub Desktop.
Save 5a494d/cc1e9ec41f646f8c7450cbb1f78238df to your computer and use it in GitHub Desktop.
Convert array to php
<?php
# Simple loop copy - not recursive
function loop_copy($array) {
$object = new stdClass();
foreach ($array as $key => $value) {
$object->$key = $value;
}
}
# leveraging json_decode + json_encode - recursive
function json_copy($array) {
json_decode(json_encode($array), FALSE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment