何かが私を荒らしている気がします。この2つの機能があります。目的は文字を置き換えることですが、何かが機能していません。ファイルの名前は変更されますが、スペース(" ")のみが_文字に変更されます (str_replace 関数はもうありません)。なにが問題ですか?
EDIT **char_replace** は、コントローラを拡張していない別のライブラリ ファイルにあります。入力タイプ=テキストからのデータを置き換えるためにchar_replace関数を使用していますが、機能しています(関数は別のコントローラーから呼び出されています)。
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);
}