Array
(
[0] => Array
(
[0] => 1 2 3
)
[1] => Array
(
[0] => робот
)
[2] => Array
(
[0] => toster
)
)
foreach ($f as $rok) {
$trans = "".$rok.".html";
if (file_exists($trans)) {
} else {
file_put_contents($trans, $rok);
}
}
PHP Notice: Array to string conversion in /home/sashka/test1.php on line 14
$trans = "".$rok.".html";
foreach ($f as $rok) {
$trans = "".$rok[0].".html";
if (file_exists($trans)) {
} else {
file_put_contents($trans, $rok);
}
}