empty() is construct and you should have to use it like:
if(!empty($args) && $command!='reload'){
}
1
votes
Check if condition:
if(!empty($args) && $command != 'reload')
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
$args == !empty
is not valid – Bob