Develop and Download Open Source Software

Recent Changes

2012-04-17
2012-04-03
2012-02-11
2011-11-09

Wiki Guide

Side Bar

  • class SWFEditor function getTagDetail($seqno)

説明

SWF タグの少し細かい情報を取得します。

引数

  • int $seqno (SWF 中の何番目の tag か。0 数えで)

戻り値

  • mixed (...); (or boolean false:失敗)

使用例

$swf = new SWFEditor();
$swf->input($swfdata);
foreach ($swf->getTagList() as $seqno => $tagInfo) {
    var_dump($tagInfo);
    if (empty($tagInfo['detail']) === false) {
        var_dump($swf->getTagDetail($seqno));
    }
}

備考

  • (Sprite タグ中のタグは指定できません)

関連


SourceForge.JP is a Japanese version of SourceForge.net. For developments that are not related to Japan, we recommend you to use SourceForge.net.