Files
gawo25json-html/test.php
T
2026-03-05 14:00:26 +01:00

11 lines
272 B
PHP
Executable File

<?php
$jsonFilePath = "/home/kuehnk01/Schreibtisch/Examplary/Examplary.json";
if (file_exists($jsonFilePath)) {
echo "File exists.\n";
$jsonData = file_get_contents($jsonFilePath);
echo "JSON Content: " . $jsonData;
} else {
echo "File not found.\n";
}
?>