本文整理汇总了PHP中Pi::captcha方法的典型用法代码示例。如果您正苦于以下问题:PHP Pi::captcha方法的具体用法?PHP Pi::captcha怎么用?PHP Pi::captcha使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pi
的用法示例。
在下文中一共展示了Pi::captcha方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dirname
//define('PI_BOOT_SKIP', 1);
// Disable error_reporting
//define('APPLICATION_ENV', 'production');
// Pi boot with no engine bootup: current file is located in www/script/...
$boot = dirname(dirname($_SERVER['SCRIPT_FILENAME'])) . '/boot.php';
include $boot;
// Disable debugger message
Pi::service('log')->mute();
// Load session resource which is required by CAPTCHA
Pi::engine()->bootResource('session');
// Retrieve id generated CAPTCHA
$id = empty($_GET['id']) ? '' : htmlspecialchars($_GET['id'], ENT_QUOTES, 'UTF-8');
$image = null;
if (!empty($id)) {
// Load CAPTCHA adapter
$captcha = Pi::captcha()->load();
$refresh = empty($_GET['refresh']) ? false : true;
// Generate CAPTCHA image
$image = $captcha->createImage($id, $refresh);
// Close session
//session_write_close();
//Pi::service('session')->manager()->writeClose();
}
// Send responding response if image is not created
if (empty($image)) {
if (substr(PHP_SAPI, 0, 3) == 'cgi') {
header('Status: 404 Not Found');
} else {
header('HTTP/1.1 404 Not Found');
}
return;