$date = new DateTime('27.11.2018 21:20');
echo $date->format('Y-m-d H:i:s') . "\n";//27.11.2018 21:20
$date->sub(new DateInterval('PT35M'));
echo $date->format('Y-m-d H:i:s') . "\n"; //27.11.2018 20:45
if(date('H') >= 20 && date(i) >=45 )
{
//ссылка активна
}
$(window).on('resize orientationchange', function() {
$('.Ваш_элемент').slick('resize');
});
<div class="your-class">
<div><img src="https://placehold.it/350x150" class="img-responsive"></div>
<div><img src="https://placehold.it/350x150" class="img-responsive"></div>
<div><img src="https://placehold.it/350x150" class="img-responsive"></div>
</div>
$('.your-class').slick({
responsive: [
{
breakpoint: 641,
settings: "unslick"
}
],
mobileFirst: true
});
$(window).on('resize orientationchange', function() {
$('.your-class').slick('resize');
});
<select id="SELECT" multiple="">
<option value="1" >qwe</option>
<option value="2">qweewqe</option>
<option value="3" >rqwrqwr</option>
<option value="4" >rqwrqwr</option>
<option value="5" >rqwrqwr</option>
</select>
<a class='click' href="#">1</a>
<a class='click' href="#">2</a>
<a class='click' href="#">3</a>
<a class='click' href="#">4</a>
<a class='click' href="#">5</a>
<script>
$(document).ready(function(){
$('.click').on('click', function(){
var values = $('#SELECT').val();
var current = $(this).text();
if($(this).hasClass('selected'))
{
//тут удалите
$(this).removeClass('selected');
}
else
{
values.push(current);
$(this).addClass('selected');
}
$('#SELECT').val(values).trigger("change");
return false;
});
});
</script>
.content ul li{
list-style: none;
}
.content ul li:before {
content: "•";
width: 7px;
height: 7px;
background-color: #d1bd7d;
-webkit-border-radius: 10px;
border-radius: 10px;
display: inline-block;
margin-right: 5px;
list-style: none;
}
<?$APPLICATION->IncludeComponent(
"bitrix:catalog",
"",
Array(
"TEMPLATE_THEME" => "blue",
"IBLOCK_TYPE" => "catalog",
"IBLOCK_ID" => "2", //Ваш новый инфоблок
/**
* И другие параметры компонента
**/
),
false
);?>
class Foo{
public static function changeTest()
{
static::$test = '321';
}
}
class Bar extends Foo
{
public static $test = 123;
}
var_dump(Bar::$test);
Bar::changeTest();
var_dump(Bar::$test);
/***
number - исходное число
decimals - количество знаков после разделителя
dec_point - символ разделителя
thousands_sep - разделитель тысячных
***/
function number_format(number, decimals, dec_point, thousands_sep) {
number = (number + '').replace(/[^0-9+\-Ee.]/g, '');
var n = !isFinite(+number) ? 0 : +number,
prec = !isFinite(+decimals) ? 0 : Math.abs(decimals),
sep = (typeof thousands_sep === 'undefined') ? ',' : thousands_sep,
dec = (typeof dec_point === 'undefined') ? '.' : dec_point,
s = '',
toFixedFix = function(n, prec) {
var k = Math.pow(10, prec);
return '' + (Math.round(n * k) / k)
.toFixed(prec);
};
// Fix for IE parseFloat(0.55).toFixed(0) = 0;
s = (prec ? toFixedFix(n, prec) : '' + Math.round(n))
.split('.');
if (s[0].length > 3) {
s[0] = s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g, sep);
}
if ((s[1] || '')
.length < prec) {
s[1] = s[1] || '';
s[1] += new Array(prec - s[1].length + 1)
.join('0');
}
return s.join(dec);
}
// Пример 1: number_format(1234.56);
// Результат: '1,235'
// Пример 2: number_format(1234.56, 2, ',', ' ');
// Результат: '1 234,56'
// Пример 3: number_format(1234.5678, 2, '.', '');
// Результат: '1234.57'
// Пример 4: number_format(67, 2, ',', '.');
// Результат: '67,00'
// Пример 5: number_format(1000);
// Результат: '1,000'
// Пример 6: number_format(67.311, 2);
// Результат: '67.31'
// Пример 7: number_format(1000.55, 1);
// Результат: '1,000.6'
// Пример 8: number_format(67000, 5, ',', '.');
// Результат: '67.000,00000'
// Пример 9: number_format(0.9, 0);
// Результат: '1'
// Пример 10: number_format('1.20', 2);
// Результат: '1.20'
// Пример 11: number_format('1.20', 4);
// Результат: '1.2000'
// Пример 12: number_format('1.2000', 3);
// Результат: '1.200'
// Пример 13: number_format('1 000,50', 2, '.', ' ');
// Результат: '100 050.00'
// Пример 14: number_format(1e-8, 8, '.', '');
// Результат: '0.00000001'
grep -e "$pattern" /home/*/.bash_history
getent passwd | cut -d : -f 6 | sed 's:$:/.bash_history:' | xargs -d '\n' grep -s -H -e "$pattern"
<input type="hidden" name="data[name][]" value="data1" />
<input type="hidden" name="data[value][]" value="20" />
<input type="hidden" name="data[count][]" value="1" />
<input type="hidden" name="data[name][]" value="data2" />
<input type="hidden" name="data[value][]" value="30" />
<input type="hidden" name="data[count][]" value="2" />
<input type="hidden" name="data[0][name]" value="data1" />
<input type="hidden" name="data[0][value]" value="20" />
<input type="hidden" name="data[0][count]" value="1" />
<input type="hidden" name="data[1][name]" value="data2" />
<input type="hidden" name="data[1][value]" value="30" />
<input type="hidden" name="data[1][count]" value="2" />