Jump to content
  • 0

Помогите а....


vvsh
 Share

Question

Вот есть код:

set_time_limit(0);
$loadarch = $_FILES['arch']; // Это для удобства
if($loadarch['type']!='application/zip' && $loadarch['type']!='application/x-zip-compressed')
die('Ошибка! Это не zip-архив!');
copy($loadarch['tmp_name'],$loadarch['name']);
require_once('../upload/pclzip.lib.php');
$zip = new PclZip($loadarch['name']);
if(empty($_GET['d'])) {
$ext = $zip->extract(PCLZIP_OPT_SET_CHMOD, 0777);
} else {
$ext = $zip->extract(
PCLZIP_OPT_PATH,$_POST['fold'],
PCLZIP_OPT_SET_CHMOD, 0777
);
}
if(preg_match("/[.]php$/",$ext) || preg_match("/[.]pl$/",$ext) || preg_match("/[.]php[0-9]$/",$ext)) { ——- 349 строка
die("Незя".$zip->errorInfo(true));
} elseif($ext==0) {
die("Ошибка! ".$zip->errorInfo(true));
} else {
echo "<b>Файлы успешно извлечены!!</b>";
unlink($loadarch['name']);
}

Почему при исполнении скрипта выдает:

Warning: preg_match() expects parameter 2 to be string, array given in S:\vvsh\www\upload\index.php on line 349

Warning: preg_match() expects parameter 2 to be string, array given in S:\vvsh\www\upload\index.php on line 349

Warning: preg_match() expects parameter 2 to be string, array given in S:\vvsh\www\upload\index.php on line 349

Файлы успешно извлечены!!

Помогите а...

Заранее спасибо

Link to comment
Share on other sites

20 answers to this question

Recommended Posts

  • 0

Она не возвращает файл. Она возвращает массив адресов распакованных файлов. Есть небольшая разница. Тебе нужно перечислить все элементы (ака пути файлов) и проверить каждый из них на соответствие твоим параметрам. Есть еще один способ, собрать все пути в одну переменную с разбивкой на строки, например функцией join и анализировать их все скопом, т.к. тебе без разницы, в каком именно имени ошибка. А проверку на пустое значение возвращаемого результата нужно делать первой, т.к. если он пусто, он не массив и ты уже ничего в нем не проверьшь. А еше ты не сможешь остановить распаковку файлов после того, как ты её сделал. Но для такого мозга как ты это уже мелочь.

Edited by Виртуал
Link to comment
Share on other sites

  • 0

всмысле? покажи echo('<pre>'.var_dump(arr).'</pre>'); что тебе возвратил? а то я не понял зачем тебе ткой прикол, легче пройтись по массиву через цыкл, и все...)

Edited by Vindex10
Link to comment
Share on other sites

  • 0
Для того, чтобы проверить есть ли файлы с расширением .php

Маразм крепчал. Возьми книжку по PHP и открой её на главе про массивы, дурень. Ну нельзя же так дкмать что все за тебя сделают, самому только вопросы идиотские на форуме нужно задавать.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy