コード例 #1
0
ファイル: wk_cmd.php プロジェクト: yoshinaga-t/club_ace
<?php

require_once "../init.php";
$fp = e_fopen(uniqid("wk_") . ".txt", "w");
e_fwrite($fp, "xxxxxx aiueo xxxxxxx");
e_fclose($fp);
コード例 #2
0
ファイル: util.php プロジェクト: yoshinaga-t/club_ace
function e_fputs($fp, $contents)
{
    e_fwrite($fp, $contents);
}
コード例 #3
0
ファイル: fwwrite.php プロジェクト: yoshinaga-t/club_ace
<?php

require_once "../init.php";
$filename = uniqid("wk_") . ".txt";
$fp = e_fopen($filename, "a");
e_fwrite($fp, "xxxxxx aiueo xxxxxxx");
e_fclose($fp);
$fp = e_fopen($filename, "a");
e_fwrite($fp, "\nyyyyyy kiueo yyyyyy");
e_fclose($fp);