网站开发与移动开发

博客园 首页 新随笔 管理

2011年11月19日 #

摘要: //自动为用户随机生成用户名(长度6-13) function create_password($pw_length = 4){ $randpwd = ''; for ($i = 0; $i < $pw_length; $i++){ $randpwd .= chr(mt_rand(33, 126)); } return $randpwd; } function generate_username( $length = 6 ) { // 密码字符集,可任意添加你需要的字符 $chars = 'abcdefghijklmnopqrstuv... 阅读全文
posted @ 2011-11-19 21:06 txf2004 阅读(1066) 评论(0) 推荐(0) 编辑

摘要: 遇到php的转码问题,差点没折磨死我,无论我调用项目中的那些函数,都白做功夫,可能是掉错了,不知道,到网上找了好多,终于,终于,被我找到了:iconv("UTF-8","gb2312",$username);就是这个,我遇到的问题是这样的:我要利用session的username,在config.php页,我可以得到,赋值给变量$username=$_SESSION['user_name'];$fromuser=$username;然后要把这个值传到另一个页,再保存到数据库,从config.php到newmessage.php页就遇到麻烦 阅读全文
posted @ 2011-11-19 19:37 txf2004 阅读(452) 评论(0) 推荐(0) 编辑