can we use isset() function on $argv[1] in php, so that if input is not during script execution then $a can take empty value otherwise it takes input provided. I have written this code below wanted to know if we can do this ?
$a = isset($argv[1])?$argv[1]:"";