Skip to content

Instantly share code, notes, and snippets.

View Guibzs's full-sized avatar

Joffrey Guibzs

View GitHub Profile
@Guibzs
Guibzs / rgar.php
Last active December 3, 2017 09:13
PHP ~ Returns a value within an array
## Function
function rgar( $array, $name )
{
if ( isset($array[$name]) )
{
return $array[$name];
}
return '';
}