Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Недостаточно. Простой пример:Тебе достаточно проверять !empty($value), оно уже включает в себя isset($value)
$x = 0;
if(!empty($x)) echo 'empty';
if(isset($x)) echo 'isset';
$x = '';
if(!empty($x)) echo 'empty';
if(isset($x)) echo 'isset';