Continued docs
This commit is contained in:
12
examples/subscribe-php/subscribe.php
Normal file
12
examples/subscribe-php/subscribe.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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);
|
||||
Reference in New Issue
Block a user