1. preg_replace() $msg = preg_replace(/style.+\/style/is, , $msg); -----删除style/style和中间的部分 $msg = preg_replace(/[^]+/, , $msg); -----是删除和中间的内容 i (PCRE_CASELESS) 如果设定此修正符,模式中的字符将...
str_replace() 函数使用一个字符串替换字符串中的另一些字符。 str_replace(find,replace,string,count) 参数 描述 find 必需。规定要查找的值。 replace 必需。规定替换find中的值的值。 string 必需。规...
file_get_contents() 函数把整个文件读入一个字符串中。 和 file() 一样,不同的是 file_get_contents() 把文件读入一个字符串。 file_get_contents() 函数是用于将文件的内容读入到一个字符串中的首...
?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); ?...