Forum und email

SWFMovie->output()

(PHP 4 >= 4.3.3)

SWFMovie->output() — Dumps your lovingly prepared movie out

說明

SWFMovie
int 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值

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();
?>