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/metainformationen.php

10 lines
286 B
PHP

<?php
$fn = "gaestebuch.csv";
echo "Dateigröße: " . filesize($fn) . "<br>";
echo "Datei lesbar: " . is_readable($fn) . "<br>";
echo "Datei schreibbar: " . is_writable($fn) . "<br>";
echo "Dateityp: " . filetype($fn) . "<br>";
echo "Verzeichnis: " . is_dir($fn) . "<br>";
?>