标签:PHP

PHP

PHP 数组和字符串互相转换实现方法

TaKaSa阅读(838)赞(0)

PHP 中由于数组和字符串这两种变量类型是如此常用,以至于 PHP 具有两个函数,可以在字符串和数组之间互相进行转换 $array=explode(separator,$string); $string=implode(glue,$arra...

PHP

PHP验证码类

TaKaSa阅读(1676)赞(0)

<?php //验证码类 class ValidateCode { private $charset = 'abcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ23456789';//随机因子 priv...