Как исправить & quot; Только переменные должны передаваться по ссылке & quot; ошибка

Я пытаюсь отобразить изображения из папки. Когда я запускаю свой скрипт, я получаю следующую ошибку —

"Only variables should be passed by reference in C:\wamp\www\salon\mainS\image_delete.php on line 72"

КОД:

<?php

$dir = 'uploads/';
$display = array('jpg', 'jpeg', 'png', 'gif');

if (file_exists($dir) == false) {
echo 'Directory \''. $dir. '\' not found!';
} else {
$dir_contents = scandir($dir);

foreach ($dir_contents as $file) {
$type = strtolower(end(explode('.', $file)));

if ($file !== '.' && $file !== '..' && in_array($type, $display) == true)
{
echo'<div style="width:1170px;" >'.
'<div style="float:left; margin-right:5px;" >'.'<img style="width:200px; height:200px;"src="'. $dir. '/'. $file. '" alt="'. $file.'"/>'.'</div>'
.'</div>';
}
}
}
?>

моя строка 72

$type = strtolower(end(explode('.', $file)));

0

Решение

попробуй это

$name_parts = explode('.', $file);
$type = strtolower(end($name_parts));
1

Другие решения

Попробуй это:

    $dir = 'uploads/';
if (file_exists($dir) == false) {
echo 'Directory \''. $dir. '\' not found!';
} else {
$dir_contents = scandir($dir);

foreach ($dir_contents as $file) {
try {
if (!is_dir($file) && (getimagesize($file))) {
echo'<div style="width:1170px;" >' .
'<div style="float:left; margin-right:5px;" >' . '<img style="width:200px; height:200px;"src="' . $dir . '/' . $file . '" alt="' . $file . '"/>' . '</div>'
. '</div>' . "\r\n";
}
} catch (Exception $e) {
continue;
}
}
}

[/ NOEDIT]

0

Исправьте это, добавив дополнительную скобку, например:

$type = strtolower(end((explode('.', $file))));

Увидеть: (<5.6) Иногда значимые скобки

0

Присвойте результат разнесения временной переменной и передайте эту переменную в конце, вот пример.

$tmp = explode('.', $fileName);
$fileExtension = end($tmp);

также, чтобы получить расширение, вы также можете использовать следующий метод

$fileExtension = pathinfo($fileName, PATHINFO_EXTENSION);
0
По вопросам рекламы [email protected]