0
1

More than 5 years have passed since last update.

耽美系ことうみ無限SSライティング装置

Last updated at Posted at 2015-02-09

php始めたばかり。某サイトみながら書きました。
更新するたび本文増えるよ。みんなで叶える物語ってことだよね?

<?php

$testfile = fightdayo.php;
$umisay =ことりのすりおろしリンゴ入りヨーグルト美味しいです。”;
if (is_writable($testfile)){
} else {
     echo not writable!;
     exit;
}
$fp = fopen($testfile,a);
if (!$fp) {
     echo could not open!;
     exit;
}
if (write($fp,$umisay) === false) {
     echo could not write!;
     exit;
}
echo success!;
fclose($fp);
$testfile = fightdayo.php;
if (!$fp = open($testfile, r)) {
     echo could not open;
     exit;
}
$umisay = fread($fp,filesize($testfile));
var_dump($umisay);
fclose($fp);
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1