“注意:未定义的索引:第 3 行 C:\Nginx\html\default.php 中的大小”
每当我尝试打开我的新游戏网站时,我都会收到此错误。这里有人对如何解决这个问题有任何想法吗?
<?php
$size = $_GET["size"];
/** Default dimensions **/
$width = "960";
$height = "550";
/** Show **/
switch($size) {
default:
break;
case 'large':
$width = "1185";
$height = "679";
break;
case 'huge':
$width = "1792";
$height = "1027";
break;
case 'tiny':
$width = "706";
$height = "405";
break;
}
?>