アットウィキロゴ

php55

<!DOCTYPE html>
 
<html>
    <head>
        <meta charset="UTF-8">
        <title>abc</title>
    </head>
    <body>
 
 <?php
 
$memo="4,6,8";
 
$fp = fopen("data.txt", "w");
fwrite($fp,$memo);
fclose($fp);
?>
 
    </body>
</html>
 
最終更新:2015年07月17日 04:44