Created
July 29, 2014 06:09
-
-
Save dave-jay/6ac4cfa72b080190889c to your computer and use it in GitHub Desktop.
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 | |
# code for how to get the new key | |
$proj_cout = count($projects['departments']); | |
if(empty($projects['departments'])){ | |
$newKey = 0; | |
}else{ | |
$keys = array_keys($projects['departments']); | |
asort($keys); | |
$newKey = end($keys); | |
$newKey = $newKey + 1; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment