>>385
1.2.6です

>>386
$text = file_get_contents('test.txt');
$text .= 'a';
file_put_contents('test.txt', $text);

アクションの中身はこうなってて、1回叩くだけでtest.txtの中身が「aa」になっちゃいます・・・