会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
秀秀秀姑娘
CnBlogs
Home
New Post
Contact
Admin
Subscription
2017年5月18日
PHP英文字母大小写转换函数小结
每个单词的首字母转换为大写:ucwords() 代码如下: <?php$foo = 'hello world!';$foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!';$bar = ucwords($bar); // HELLO WO
Read More
posted @ 2017-05-18 09:20 秀秀秀姑娘
Views(458)
Comments(0)
Diggs(0)
2017年4月27日
验证码
<?php //设置session,必须处于脚本最顶部 session_start(); $image = imagecreatetruecolor(100, 30); //1>设置验证码图片大小的函数 //设置验证码颜色 imagecolorallocate(int im, int red, in
Read More
posted @ 2017-04-27 15:06 秀秀秀姑娘
Views(148)
Comments(0)
Diggs(0)
公告