в чем разница? PHP: function site() { $host = 'http://'.$_SERVER['HTTP_HOST']; $directory = dirname($_SERVER['SCRIPT_NAME']); $website = $directory == '/' ? $host.'/' : $host.$directory.'/'; return $website; } и это PHP: function site() { $host = 'http://'.$_SERVER['HTTP_HOST']; $directory = dirname($_SERVER['SCRIPT_NAME']); $website = $host.$directory.'/'; return $website; }
я знаю что в коде))) PHP: $website = $directory == '/' ? $host.'/' : $host.$directory.'/'; $website = $host.$directory.'/'; эти строчки одинаковые?