12 lines
508 B
PHP
12 lines
508 B
PHP
|
|
<?php
|
||
|
|
// Пульт эфира: GET control.php → текущее состояние (play|pause);
|
||
|
|
// GET control.php?set=play|pause → переключить. Пишет live-demo/steps/control.txt.
|
||
|
|
$f = __DIR__ . '/steps/control.txt';
|
||
|
|
if (isset($_GET['set'])) {
|
||
|
|
$v = ($_GET['set'] === 'play') ? 'play' : 'pause';
|
||
|
|
@file_put_contents($f, $v);
|
||
|
|
}
|
||
|
|
header('Content-Type: text/plain; charset=utf-8');
|
||
|
|
header('Cache-Control: no-store');
|
||
|
|
echo is_file($f) ? trim((string) file_get_contents($f)) : 'pause';
|