示例#1
0
 static function string($clipactions, $opts = array())
 {
     $text = 'ALLEventFlags: ';
     $text .= IO_SWF_Type_CLIPEVENTFLAGS::string($clipactions['AllEventFlags'], $opts);
     $text .= "\n";
     $text .= "\tClipActionRecords:\n";
     foreach ($clipactions['ClipActionRecords'] as $clipActionRecord) {
         $text .= "\t" . IO_SWF_Type_CLIPACTIONRECORD::string($clipActionRecord, $opts) . "\n";
     }
     return $text;
 }
示例#2
0
 static function string($clipactionrecord, $opts = array())
 {
     $text = '';
     $text .= IO_SWF_Type_CLIPEVENTFLAGS::string($clipactionrecord['EventFlags'], $opts);
     $text .= "\n";
     $text .= "\tActions:\n";
     foreach ($clipactionrecord['Actions'] as $action) {
         $text .= "\t";
         $text .= IO_SWF_Type_Action::string($action, $opts);
         $text .= "\n";
     }
     return $text;
 }