codecamp

sp_verifycode_img()

sp_verifycode_img()

上一页下一页

示例:

<?php
$img=sp_verifycode_img();//不传入参数,全部使用默认值
echo $img;
$img=sp_verifycode_img('code_len=4&font_size=20&width=238','title="点击获取"'); //传入参数
echo $img;
?>

<!--关于参数1:$param-->
<!--

-->

<php>

</php
<!--也可以-->
{:sp_verifycode_img()}

参数1:

$style ='code_len=4&font_size=15&width=100&height=35&charset=1234567890';

code_len 字符长度

font_size 字体大小

width 生成图片宽度

heigh 生成图片高度

charset 要显示的字符集

注:此函数仅生成img标签,应该配合在表单加入name=verify的input标签

上一页下一页

sp_update_current_user()
UU()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

后台管理

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }