This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql12d/zaehler.php
T

24 lines
280 B
PHP

<?php
$fp = @fopen('z.txt', 'r');
if ($fp == false) {
$str = 1;
$fp = fopen('z.txt', 'w');
fclose($fp);
} else {
$str = fgets($fp, 11);
fclose($fp);
}
echo $str++;
$fp = fopen('z.txt', 'w');
fputs($fp, $str, 11);
fclose($fp);
?>