добавить скажем 10 строчек в БД
не известное количество переменных
$x = 1.234;
$y = $x % 1; // 0
$y = $x - floor($x); // 0.234
$y = fmod($x, 1); // 0.234
$y = explode('.', $x); // $y[1] = 234
$x = -1.234;
$y = $x % 1; // 0
$y = $x - floor($x); // 0.766
$y = fmod($x, 1); // -0.234
$y = explode('.', $x); // $y[1] = 234
$arr = [
['Пн', '08:00 - 20:00'],
['Вт', '08:00 - 20:00'],
['Ср', '08:00 - 20:00'],
['Чт', '08:00 - 20:00'],
['Пт', '08:00 - 20:00'],
['Сб', '08:00 - 18:00'],
['Вс', '10:00 - 15:00'],
];
$res = "";
$i = 0;
do {
$j = $i + 1;
do {
if ($arr[$i][1] <> $arr[$j][1]) {
break;
}
$j++;
} while ($j < count($arr));
if (strlen($res) > 0) {
$res .= ", ";
}
if ($i == $j - 1) {
$res .= $arr[$i][0] . ": " . $arr[$i][1];
}
else {
$res .= $arr[$i][0] . '-' . $arr[$j - 1][0] . ': ' . $arr[$i][1];
}
$i = $j;
} while ($i < count($arr));
echo $res;
$s = 'HelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorld';
$l = strlen($s);
$file = 'test.txt';
$x = 0;
while ($x < $l)
{
if (($l - $x) > 100)
{
file_put_contents($file, substr($s, $x, 100), FILE_APPEND | LOCK_EX);
$x += 100;
}
else
{
file_put_contents($file, substr($s, $x, $l - $x), FILE_APPEND | LOCK_EX);
$x = $l;
}
}