for ($i = 0; $i < count($arr); $i++) {
if ($i < 4) continue;
echo $arr[$i];
}
<object
data="https://example.com/test.pdf#page=2"
type="application/pdf"
width="100%"
height="100%">
<p>Your browser does not support PDFs.
<a href="https://example.com/test.pdf">Download the PDF</a>.</p>
</object>
<object
data="https://example.com/test.pdf#page=2"
type="application/pdf"
width="100%"
height="100%">
<iframe
src="https://example.com/test.pdf#page=2"
width="100%"
height="100%"
style="border: none;">
<p>Your browser does not support PDFs.
<a href="https://example.com/test.pdf">Download the PDF</a>.</p>
</iframe>
</object>
- Используйте require, когда файл требуется приложению.
- Используйте include, когда файл не требуется, и приложение должно продолжаться, когда файл не найден.
set_time_limit(0);
ini_set('max_execution_time', 0); // не сработает, если включен безопасный режим
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Human Being</title>
<link rel="import" href="/imports/heart.html">
</head>
<body>
<p>What is a body without a heart?</p>
</body>
</html>
var link = document.querySelector('link[rel=import]');
var heart = link.import;
// Access DOM of the document in /imports/heart.html
var pulse = heart.querySelector('div.pulse');
Firefox will not ship HTML Imports in its current form. See this status update for more information. Until there is a consensus on the standard or alternative mechanisms are worked out, you can use a polyfill such as Google's webcomponents.js.
$users = [
'u101',
'u402',
'u503',
'u703',
'u114',
'u148',
'u152',
'u173',
'u134'
];
$string = implode(" OR ", $users); // u101 OR u402 OR u503 OR u703 OR u114 OR u148 OR u152 OR u173 OR u134;
"... WHERE `akk` IN (" . implode(",", $users) . ");";
13183208474659875 / 1000000 = 13183208475 = Mon, 05 Oct 2387 10:21:15 GMT
date_default_timezone_set('Europe/Samara'); // UTC+4:00
echo date('d.m.Y H:i:s', 13183208475); // "05.10.2387 14:21:15
$var = explode(',', $fabricsVal);
$arrFilter = array("SECTION_ID"=>$var);
if (file_exists($filename) && is_file($filename)) {
$content = file_get_contents($filename)
}
is_file возвращает TRUE, если файл существует и является обычным файлом, иначе возвращает FALSE.
if (is_file($filename)) {
$content = file_get_contents($filename);
}
if (version_compare(PHP_VERSION, '7.0.0') >= 0) {
echo 'Я использую PHP версии не ниже 7.0.0, моя версия: ' . PHP_VERSION . "\n";
}
if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
echo 'Я использую PHP версии не ниже 5.3.0, моя версия: ' . PHP_VERSION . "\n";
}
if (version_compare(PHP_VERSION, '5.0.0', '>=')) {
echo 'Я использую PHP 5.0.0 или выше, моя версия: ' . PHP_VERSION . "\n";
}
if (version_compare(PHP_VERSION, '5.0.0', '<')) {
echo 'Я до сих пор использую PHP 4, моя версия: ' . PHP_VERSION . "\n";
}