当前位置: 首页>>代码示例>>PHP>>正文


PHP Pi::captcha方法代码示例

本文整理汇总了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;
开发者ID:Andyyang1981,项目名称:pi,代码行数:31,代码来源:captcha.php


注:本文中的Pi::captcha方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。