显示$ zip-> getStream时替换stream_get_contents

时间:2013-09-06 16:01:23

标签: php

美好的一天,

是否有另一种显示$ zip-> getStream的输出而不是stream_get_contents的方法,因为str_replace不会在stream_get_contents上工作,我想在显示之前替换文件中的一些字符串。我正在使用

$fp = $zip->getStream($path);
$data = file_get_contents($fp);
if ( $data !== false ) {
 echo str_replace("[path]","../mailtemplates/$sql_temp/",$data);
}

但它仍无效。

任何想法?

谢谢。

0 个答案:

没有答案