PHPEdit.net Community
   
1 2 3 4
Tutorials Tips Pasties Code Snippets
 

Home > Pasties > Pastie #7

Created on 23/01/2008 23:13 by LetsSurf

  1. if (!function_exists('array_get')) {
  2. function array_get($arr, $key, $default = false) {
  3. if (array_key_exists($key, $arr)) {
  4. return $arr[$key];
  5. } else {
  6. return $default;
  7. }
  8. }
  9. }

 
PHPEdit User Community, © 2008 WaterProof SARL
Powered by PHPEdit