验证码制作
方法 | 说明 |
---|---|
imagecreatetruecolor($width, $height); | 创建画布 |
imagecolorallocate($image, 255, 255, 255); | 创建颜色 |
imagefilledrectangle($image, 1, 1, $width-2, $height-2, $white); | 填充画布 |
print_r | 输出数组 |
range(low,high,step) | low 必需。规定数组的最低值。high 必需。规定数组的最高值。 |
join("",array) | 把数组元素组合为一个字符串: |
array_merge(array1,array2) | 函数把一个或多个数组合并为一个数组。 |
exit("string") | exit() 函数输出一条消息,并退出当前脚本。 |
strlen(string) | strlen() 函数返回字符串的长度。 |
str_shuffle(string) | str_shuffle() 函数随机打乱字符串中的所有字符。 |
substr(string,start,length) | substr() 函数返回字符串的一部分。 |
require_once 'string.func.php' | 语句在脚本执行期间包含并运行指定文件 |
count(array,mode可选); | count() 函数返回数组中元素的数目。 |
mt_rand(min,max) | mt_rand() 使用 Mersenne Twister 算法返回随机整数。 |
define(name,value,case_insensitive) | define() 函数定义一个常量。 |
dirname(FILE) | 函数返回的是脚本所在在的路径 |
set_include_path() | 包含文件路径 设置当前的环境变量 |
get_include_path取得当前已有的环境变量 | get_include_path取得当前已有的环境变量 |
PATH_SEPARATOR | 路径分隔符 |
array_keys($array) | 返回包含数组中所有键名的一个新数组: |
array_values() | array_values() 函数返回一个包含给定数组中所有键值的数组,但不保留键名。 |
$_SESSION使用
方法 | 说明 |
---|---|
session_start(); | 开始使用session |
$_SESSION['test'] = time(); | 使用$_SESSION |
var_dump($_SESSION); | 输出并且输出类型 |
网友评论