SWFMovie
在线手册:中文 英文
PHP手册

SWFMovie::save

(PHP 4 >= 4.3.3)

SWFMovie::saveSaves the SWF movie in a file

说明

int SWFMovie::save ( string $filename [, int $compression = -1 ] )
Warning

此函数是实验性的。 此函数的表象,包括名称及其相关文档都可能在未来的 PHP 发布版本中未通知就被修改。使用本扩展风险自担 。

Saves the SWF movie to the specified filename.

参数

filename

The path to the saved SWF document.

compression

The compression level can be a value between 0 and 9, defining the SWF compression similar to gzip compression.

This parameter is only available as of Flash MX (6).

返回值

Return the number of bytes written or FALSE on error.

参见


SWFMovie
在线手册:中文 英文
PHP手册
PHP手册 - N: Saves the SWF movie in a file

用户评论:

jerryscript at aol dot com (05-Jan-2004 02:43)

Ming 0.3 (current CVS) allows you to set the compression level 0-9 when saving to file.  Use 9 for MX style compression.

<?php $myMovie->save($str_filename,9); ?>