SWFMovie::output

(PHP 5 <= 5.3.0, PECL ming SVN)

SWFMovie::outputDumps your lovingly prepared movie out

說明

int SWFMovie::output ([ int $compression ] )
Warning

本函式是實驗性的。這個函式的行為、名稱、和關於此函式的任何其他文件在未來PHP的發行中可能會在不通知的情況下改變。 使用此函式需自行承擔風險。

Dumps the SWFMovie.

Don't forget to send the Content-Type HTTP header file before using this function, in order to display the movie in a browser.

參數

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.

範例

Example #1 Displaying your $movie in a browser

<?php
header
('Content-type: application/x-shockwave-flash'); 
$movie->output();
?>

參見

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top