Register::request()->has('auth','post')
Register::auth()->is_authorized()
View::render
не чего кроме файла вида не передаете, так передайте туда массив $message и там уже его разбирайте вашим шаблонизатором или родным php.<?php
// наша переменная
$thisIsVar = 0;
// дата сегодня
$thisTime = time();
// узнаем сколько дней в этом месяце
$daysInThisMonth = cal_days_in_month(CAL_GREGORIAN, date('m', $thisTime), date('Y', $thisTime));
// узнаем дату (сегодня)
$thisDay = date('d', $thisTime);
// то что будет добавляться
$increment = 10;
// раз во сколько дней
$dayDlay = 5;
// вычислим текущий цикл
$step = (round($daysInThisMonth / $dayDlay)) ? round($daysInThisMonth / $dayDlay) : 1;
// обновим нашу перемеренную
$thisIsVar = ($step * $increment) + $thisIsVar;
print_r($thisIsVar);
?>
$start = microtime(true);
for($i=0;$i<10000;$i++){
$a = 0;
if ($a < 1) ++$a;
}
$time = microtime(true) - $start;
printf('Time %.4F s.', $time);
$start = microtime(true);
for($i=0;$i<10000;$i++){
$a < 1 && ++$a;
}
$time = microtime(true) - $start;
printf('Time %.4F s.', $time);
function sendRequest($url, $fields = [], $method = 'get', $config = []) {
$fields = http_build_query($fields);
// http://php.net/manual/ru/function.curl-setopt.php
$_config = [
CURLOPT_USERAGENT => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',
CURLOPT_COOKIEFILE => 'cookie.txt',
CURLOPT_COOKIEJAR => 'cookie.txt',
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HEADER => '',
CURLOPT_TIMEOUT => 30,
CURLOPT_AUTOREFERER => true,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => false,
];
if ($method == 'post') {
$_config[CURLOPT_POSTFIELDS] = $fields;
$_config[CURLOPT_POST] = true;
}
foreach ($config as $key => $value) {
$_config[$key] = $value;
}
$curl = curl_init();
curl_setopt_array($curl, $_config);
$response = curl_exec($curl);
curl_close($curl);
return $response;
}