本文整理匯總了PHP中front::main方法的典型用法代碼示例。如果您正苦於以下問題:PHP front::main方法的具體用法?PHP front::main怎麽用?PHP front::main使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類front
的用法示例。
在下文中一共展示了front::main方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: str_pad
$value = $_SESSION[$key] = str_pad(mt_rand(0, 9999), 4, '0', STR_PAD_LEFT);
session_write_close();
// 生成驗證碼圖
header('Content-type: image/png');
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache -Control: no-store, no-cache , must-revalidate");
header("Cache -Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache ");
$im = imagecreate(47, 17);
$color = imagecolorallocate($im, 255, 255, 255);
imagefill($im, 0, 0, $color);
$color = imagecolorallocate($im, 255, 0, 0);
imagestring($im, 5, 5, 1, $value, $color);
imagepng($im);
imagedestroy($im);
} else {
// 返回驗證碼號
session_start();
$value = isset($_SESSION[$key]) ? $_SESSION[$key] : null;
unset($_SESSION[$key]);
session_write_close();
return $authcode === $value;
}
}
}
/**
* 執行(execute)
*/
front::stub() and front::main();