Skip to content

基于PHP的中文验证码图片生成包(Composer安装),仅生成验证码图片不进行缓存,需封装使用。

License

Notifications You must be signed in to change notification settings

guojikai/captcha-image-creator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Captcha Image Creator(Pcic)

一个PHP写的中文验证码图片生成工具,仅生成验证码图片不进行缓存,需封装使用。

安装

使用 Composer 安装:

composer require guojikai/captcha-image-creator

在入口文件引入 Composer 启动脚本: (eg. index.php)

require 'vendor/autoload.php';

使用

<?php

use Pcic\Pcic;
use Pcic\PcicException;

try {
	//Print captcha image with params: String, Width, Height (eg. 宫保鸡丁, 180, 60)
	Pcic::createCaptchaImage('宫保鸡丁'); 
} catch (PcicException $e) {
	echo $e->getMessage();
}

//将直接显示验证码图片

?>

About

基于PHP的中文验证码图片生成包(Composer安装),仅生成验证码图片不进行缓存,需封装使用。

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages