let timerId = setInterval(function(){
let request = new XMLHttpRequest();
request.open('GET', 'https://mysite.com/i-am-online.php', true);
request.send();
}
,60000); //количество миллисекунд через которое отправлять запрос, допустим раз в минуту
header('Content-type: audio/mp3');
echo @file_get_contents('site.ru/file.mp3');
<?php if (date('Y.m.d')>'2019.03.23') { ?>
<div class="card">
<img class="card-img-top img-fluid" src="..." alt="Card image cap">
<div class="card-block">
<h4 class="card-title">Card title that wraps to a new line</h4>
<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<button type="button">Подробнее</button>
</div>
</div>
<?php } ?>
$array = array (
0 => '33',
1 => '34',
);
echo '['.implode(',',$array).']'.;
echo '<pre>';
print_r($_GET); // Даст вам понимание что пришло
echo '</pre>';
function myIsInt($var) {
if ((int)$var==$var) {
return true;
} else {
return false;
}
}
UPDATE `category` SET `category`.`count` = (
SELECT COUNT(`product`.`id`)
FROM `product`
WHERE
`product`.`category` = `category` .`id` AND `product`.`status` = '0'
)
$array=array(
'8,9,10,11' => 25,
'12,13,14,15,16' => 35,
'8,9,10,11' => 40
);
// . Для каждого дня:
$rand=mt_rand(0,99);
$sum=0;
foreach($array as $key=>$value) {
if (($rand>=$sum)&&($rand<($sum + $value))) {
// Временной промежуток этот $value
// Если надо снова случайный час, то
$hour = explode(',',$key);
shuffle($hour);
$hour = array_shift($hour);
// $hour - определеный час
break;
}
}