分类:
PHP 字符串正则替换函数 preg_replace 函数

PHP 字符串正则替换函数 preg_replace 函数

栏目分类:PHP 浏览次数:401 发布时间:2014-08-23

1. preg_replace() $msg = preg_replace(/style.+\/style/is, , $msg); -----删除style/style和中间的部分 $msg = preg_replace(/[^]+/, , $msg); -----是删除和中间的内容 i (PCRE_CASELESS) 如果设定此修正符,模式中的字符将...

TAG:
PHP str_replace() 函数 字符串 字符替换

PHP str_replace() 函数 字符串 字符替换

栏目分类:PHP 浏览次数:425 发布时间:2014-08-23

str_replace() 函数使用一个字符串替换字符串中的另一些字符。 str_replace(find,replace,string,count) 参数 描述 find 必需。规定要查找的值。 replace 必需。规定替换find中的值的值。 string 必需。规...

TAG:
PHP file_get_contents() 函数 读取文件

PHP file_get_contents() 函数 读取文件

栏目分类:PHP 浏览次数:428 发布时间:2014-08-23

file_get_contents() 函数把整个文件读入一个字符串中。 和 file() 一样,不同的是 file_get_contents() 把文件读入一个字符串。 file_get_contents() 函数是用于将文件的内容读入到一个字符串中的首...

TAG:
实现GIF动画缩略图的php代码

实现GIF动画缩略图的php代码

栏目分类:PHP 浏览次数:259 发布时间:2014-08-15

?php $image = new Imagick(1.gif); $image = $image-coalesceImages(); foreach ($image as $frame) { $frame-thumbnailImage(50, 50); } $image = $image-optimizeImageLayers(); $image-writeImages(new.gif, true); ?...

TAG: