PHP代码:判断$t非空并执行相应操作
$t = isset($_GET['t']) ? $_GET['t'] : ''; if (!empty($t)) { if (is_numeric($t)) { echo '<meta http-equiv="refresh" content="' . $t . '">'; } else { //bianjing other operations } }
原文地址: https://www.cveoy.top/t/topic/p2JR 著作权归作者所有。请勿转载和采集!