$cache_url = '?' . time();
echo '<img src="img.png' . $cache_url.'">';
<?php
ob_clean();
ob_start();
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
?>
if( is_callable( $func ) )
{
echo "ЦИКЛ, функция и прочее";
}
yield $usernames[$i]['field_value'] => $MadelineProto->account->contacts.search(['username' => $usernames[$i]['field_value']],1);
$i++;
function foo() {
echo "В foo()<br />\n";
}
function bar($arg = '')
{
echo "В bar(); аргумент был '$arg'.<br />\n";
}
// Функция-обертка для echo
function echoit($string)
{
echo $string;
}
$func = 'foo';
$func(); // Вызывает функцию foo()
$func = 'bar';
$func('test'); // Вызывает функцию bar()
$func = 'echoit';
$func('test'); // Вызывает функцию echoit()
if (isset($_POST['new_invoice']) ) {
//////////////////////////////////////// header( 'Refresh: 0');
header( 'Location: invoice.php?id=111' );
die();
}
if (isset($_POST['new_invoice']) ) {
//////////////////////////////////////// header( 'Refresh: 0');
header( 'Location: invoice.php?id='.$_POST['new_invoice'] );
die();
}