SWF バイナリデータを解釈して再構築します。(主にデバッグ用)
<?php $swfdata = file_get_contents("test.swf"); $swf = new SWFEditor(); $swf->input($swfdata); $swf->rebuild(); header('Content-type: application/x-shockwave-flash'); echo $swf->output();