All pastes #663074 Raw Edit

Miscellany

public php v1 · immutable
#663074 ·published 2007-08-19 08:07 UTC
rendered paste body
function selfURL() {	$s = empty($_SERVER["HTTPS"]) ? ''		: ($_SERVER["HTTPS"] == "on") ? "s"		: "";	$protocol = strleft(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s;	$port = ($_SERVER["SERVER_PORT"] == "80") ? ""		: (":".$_SERVER["SERVER_PORT"]);	return $protocol."://".$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI'];}function strleft($s1, $s2) {	return substr($s1, 0, strpos($s1, $s2));}