1

我有一种感觉,有什么东西在欺骗我。我有这两个功能。目的是替换字符,但有些东西不起作用。文件名已更改,但只有空格(" ") 更改为_字符(不再有 str_replace 函数)。怎么了?

编辑 **char_replace** 位于未扩展控制器的单独库文件中。我正在使用char_replace函数来替换来自输入 type=text的数据并且它正在工作(正在从不同的控制器调用函数)。

function img_upload($folder) {
        $this->path = './public/img/' . $folder;
        $imgs = array();
        $config = array(
            'allowed_types' => 'jpg|jpeg|png|gif',
            'upload_path' => $this->path
        );

        $this->CI->load->library('upload', $config);

        foreach ($_FILES as $key => $value) {
            $img_name = $this->char_replace($key->name, '_');
            $config['file_name'] = $img_name;
          if($key != 'logo') :
              if (!$this->CI->upload->do_upload($key)) {
            } else {
                $q = $this->CI->upload->data();
                $config['image_library'] = 'gd2';
                $config['source_image'] = $this->path . '/' . $q['file_name'];
                $config['new_image'] = $this->path . '/thumbs';
                $config['create_thumb'] = FALSE;
                $config['maintain_ratio'] = TRUE;
                $config['width'] = 128;
                $config['height'] = 128;

                $this->CI->load->library('image_lib');
                $this->CI->image_lib->clear();
                $this->CI->image_lib->initialize($config);
                $this->CI->image_lib->resize();
                array_push($imgs, $q['file_name']);
            }
          endif;
        }

        if(empty($imgs)){
            return FALSE;
        } else {
            return implode(',', $imgs);
        }
    }

和这个:

function char_replace($text, $rep_simbol = " ")
    {
        $char = array('!', '&', '?', '/', '/\/', ':', ';', '#', '<', '>', '=', '^', '@', '~', '`', '[', ']', '{', '}');
        return $name = str_replace($char, $rep_simbol, $text);
    }
4

2 回答 2

1
foreach ($_FILES as $key => $value) {
  $img_name = $this->char_replace($key->name, '_');
  ...

这里$key->name将是未定义的,因此char_replace将返回一个空字符串。由于file_name是空的,Codeigniter Upload 库将回退到它的_prep_filename方法。

使用$value['name']而不是$key->name.

如果您要上传多个文件,其中的file字段具有相同的名称

$count = 0;
foreach ($_FILES as $filename => $values) {
  $img_name = is_array($values['name']) ? $values['name'][$count] : $values['name'];
  $img_name = $this->char_replace($img_name, '_');
  $count++;
于 2012-10-26T16:29:05.607 回答
0

我认为替换必须至少具有与搜索一样多的元素:

function char_replace($text, $rep = " ")
{
    $char = array('!', '&', '?', '/', '/\/', ':', ';', '#', '<', '>', '=', '^', '@', '~', '`', '[', ']', '{', '}');
    $replace = array($rep, $rep, $rep, $rep, %rep, $rep, $rep, $rep, $rep, $rep, $rep, $rep, $rep, $rep, $rep, $rep, $rep, $rep, $rep);
    return $name = str_replace($char, $replace, $text);
}
于 2012-10-26T16:04:43.953 回答