prevent undefined index error
$array = [];
$foo = $array['nonExistingKey']; // throw E_NOTICE: Undefined index
if (!empty($foo))
{
echo $foo;
}
use instead
$array = [];
$foo = &$array['nonExistingKey'];
if (!empty($foo))
{
echo $foo;
}
Written by Nicolas
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#