首页 > 资讯列表 >  本页面生成Trying专题报道,Trying滚动新闻,Trying业界评论等相关报道!
  • php不用GD库生成当前时间的PNG格式图象程序

    php不用GD库生成当前时间的PNG格式图象程序

    本文是一个php实现的不用GD库可以生成当前时间的PNG格式图象,感兴趣的同学参考下. <?php function set_4pixel($r, $g, $b, $x, $y) { global $sx, $sy, $pixels; $ofs = 3 * ($sx * $y + $x); $pixels[$ofs] = chr($r); $pixels[$ofs + 1] = chr($g); $pixels[$ofs + 2] = chr($b); $pixels[$ofs + 3] = chr($r); $pixels[$ofs + 4] = chr($g); $pixels[$ofs + 5] = chr($b); $ofs += 3 * $sx; $pixels[$ofs] = chr($r); $pixels[$ofs + 1] = chr($g); $pixels[$ofs + 2] = chr($b); $pixels[$ofs + 3] = chr($r); $pixels[$ofs + 4] = chr($g)...

    PHP 2014-12-13 16:51:04
  • PHP 加密/解密函数 dencrypt(动态密文,带压缩功能,支持中文)

    PHP 加密/解密函数 dencrypt(动态密文,带压缩功能,支持中文)

    本文为大家讲解了PHP 加密/解密函数 dencrypt(动态密文,带压缩功能,支持中文),感兴趣的同学参考下. 采用SHA1生成密匙簿,超过300个字符使用ZLIB压缩 支持中文,大家可以测试下。 // +----------------------------------------------------------------------+ // $string 明文 或 密文 // $isEncrypt 是否加密 // $key 密匙 // 采用SHA1生成密匙簿,超过300个字符使用ZLIB压缩 function dencrypt($string, $isEncrypt = true, $key = KEY_SPACE) { if (!isset($string{0}) || !isset($key{0})) { return false; } $dynKey = $isEncrypt ? hash('sha1', microtime(true)) : substr($string, 0, 40); $fixedKey...

    PHP 2014-12-13 12:24:04
  • php Try Catch异常测试

    php Try Catch异常测试

    本文为大家讲解的是php的 Try Catch异常测试,感兴趣的同学参考下. 页面try catch里使用c的 c1,c1里使用b的b1,b1里使用a的a1。 默认的是:a1里抛出异常,b1里捕获a1的异常,然后再把刚才的异常抛出,c1捕获,然后抛出,最后页面捕获并输出...

    PHP 2014-12-13 11:03:04
  • php字符函数strstr,strpos,stristr使用方法

    php字符函数strstr,strpos,stristr使用方法

    本文为大家讲解的是php中的字符串查找函数strstr,strpos,stristr的使用方法,感兴趣的同学参考下. php判断字符以及字符串的包含,可以使用PHP的内置函数strstr,strpos,stristr直接进行判断...

    PHP 2014-12-13 10:51:06
  • PHP中的output_buffering详细介绍

    PHP中的output_buffering详细介绍

    本文为大家讲解了PHP中的output_buffering使用方法,本文讲解了output buffering的一些高级用法,感兴趣的朋友可以参考学习下 我个人认为,Output buffering是比较纯粹的4.0特征。尽管从概念上看来相当简单,但是output buffering功能非常强大,能使开发者更容易地开发高级而有效的程序...

    PHP 2014-12-13 09:57:06
  • php str_pad 函数使用详解

    php str_pad 函数使用详解

    本文为大家讲解的是php的str_pad函数的用法,str_pad的作用是用一个字符串填充另一个指定字符串到指定长度,感兴趣的同学参考下. str_pad()函数的作用是:用一个字符串填充另一个指定字符串到指定长度。 string str_pad ( string , int pad_length , string pad_string , int pad_type); string 指定字符串,pad_length指定长度,pad_string用来填充的字符串(可选参数),pad_type指定填充位置(可选参数,STR_PAD_LEFT,STR_PAD_BOTH); 如果pad_string , pad_type均为空,那么就等于默认pad_string 为空格, pad_type就是自动填充在指定字符串的末端. <? $string = "test"; echo str_pad($string , 10); // produces "test "; ?> 其余两个例子: <? ...

    PHP 2014-12-13 09:30:09
  • php preg_match_all结合str_replace替换内容中所有img

    php preg_match_all结合str_replace替换内容中所有img

    本文是一个php结合preg_match_all函数结合str_replace函数实现的可以用来替换内容中所有img标签的代码,感兴趣的同学参考下. 最近做站的时候,采集了大量的数据,但采回来的数据基本上都要经过过滤原站保留的数据,其中IMG就是一个地方。网站上好多这些应用例子似乎没有必要“秀”出来,但站已几天没写日志,那就来一个吧 采集回来的图片img标签中,有好多javascript脚本和无用的信息,必需过替换自己想要的,比如alt...

    PHP 2014-12-13 07:36:04
  • php strtotime 函数使用方法

    php strtotime 函数使用方法

    本文为大家讲解的是php中的strtotime函数的用法,strtotime函数可以用来返回指定日期格式的时间戳,感兴趣的同学参考下 int strtotime ( string time [, int now]) 本函数预期接受一个包含英文日期格式的字符串并尝试将其解析为 UNIX 时间戳。 如果 time 的格式是绝对时间则 now 参数不起作用...

    PHP 2014-12-13 06:09:03
  • php错误:  file_put_contents(xxxx) [function.file-put-contents]: failed to open stream: Permission denied in原因及解决方法

    php错误: file_put_contents(xxxx) [function.file-put-contents]: failed to open stream: Permission denied in原因及解决方法

    PHP 错误:  file_put_contents(xxxx) [function.file-put-contents]: failed to open stream: Permission denied in 原因: file_put_contents函数在向指定文件写入数据时权限不足写入失败 解决方法: 修改被写入的文件权限,如果是自动创建的文件,则目录没有权限,需要把目录赋予可写权限 linux下 chmod -R 777 ...

    PHP 2014-12-13 03:42:03
  • 小技巧:在Linux下生成crypt加密密码

    小技巧:在Linux下生成crypt加密密码

            当我们用红帽Kickstart脚本或useradd或其他方式写东西的时候,经常会需要用到crypt命令加密生成的密码格式。那么,有没有其他方式可以生成这种格式的密码?事实上,方法有很多...

    系统程序 2014-12-13 03:39:04
  • PHP Warning:  include() [function.include]: Failed opening '/xxxx.php' for inclusion (include_path='.:/xxx/xxx/php/lib/php') in xxx.php解决方法
  • PHP Warning:  mkdir() [function.mkdir]: Permission denied in解决方法

    PHP Warning: mkdir() [function.mkdir]: Permission denied in解决方法

    php在调用用mkdir时出错PHP Warning:  mkdir() [function.mkdir]: Permission denied in 原因: 权限不足不能执行创建目录命令 解决方法: 修改父级目录权限为0777即可 linux: chmod -R 777 ...

    PHP 2014-12-13 02:45:05

站长搜索

http://www.adminso.com

Copyright @ 2007~2024 All Rights Reserved.

Powered By 站长搜索

打开手机扫描上面的二维码打开手机版


使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

站长搜索目录系统技术支持