我有一种感觉,有什么东西在欺骗我。我有这两个功能。目的是替换字符,但有些东西不起作用。文件名已更改,但只有空格(" ") 更改为_字符(不再有 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);
}