mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 09:31:18 +01:00
12 lines
205 B
PHP
12 lines
205 B
PHP
<?php
|
|
|
|
$fp = fopen('https://ntfy.sh/phil_alerts/json', 'r');
|
|
if (!$fp) {
|
|
die('cannot open stream');
|
|
}
|
|
while (!feof($fp)) {
|
|
$buffer = fgets($fp, 2048);
|
|
echo $buffer;
|
|
flush();
|
|
}
|
|
fclose($fp);
|