test_lgq/niucloud/vendor/fastknife/ajcaptcha/test/testImage.php
2024-01-24 17:36:08 +08:00

28 lines
469 B
PHP

<?php
use Fastknife\Domain\Factory;
require 'autoload.php';
$config = require '../src/config.php';
function showBlock()
{
global $config;
$factory = new Factory($config);
$blockImage = $factory->makeBlockImage();
$blockImage->run();
$blockImage->echo();
}
function showWord()
{
global $config;
$factory = new Factory($config);
$blockImage = $factory->makeWordImage();
$blockImage->run();
$blockImage->echo();
}
showWord();