'windows-1251' . '//IGNORE'
windows-1251//IGNORE
$maxLength = null;
$maxLengthIndex = null;
foreach ($array as $index => $value) {
$length = strlen($value);
if (is_null($maxLength) || $length > $maxLength) {
$maxLength = $length;
$maxLengthIndex = $index;
}
}
echo 'Самая длинная строка "' . $array[$maxLengthIndex] . '" под номером ' . $maxLengthIndex . '.';
Query(".page-scroll").click(function() {
pagcenter();
jQuery('html, body').animate({
scrollTop: jQuery( '#' + $(this).data("scrollid") ).offset().top
}, 1000, 'swing');
});