i'm new to php. I came across this syntax in wordpress. Can anyone explain to me the last line of that code?
$page = $_SERVER['REQUEST_URI'];
$page = str_replace("/","",$page);
$page = str_replace(".php","",$page);
**$page = $page ? $page : 'default'**
the last line(bolded). thanks