Debug is throwing...
Notice: Undefined index: HTTPS in
C:xampplitehtdocsestsitewp-contenthemesmythemeheader.php
on line 4
How can I change my function below to prevent the error?
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
}
Would this be the equivalent?
if ( isset( $_SERVER["HTTPS"] )) {$pageURL .= "s";}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…