|
|
|
สอบถามเรื่องตัดคำค่าว่างหน่อยครับ พอดีจะไม่เอาคอมม่า อ่ะครับ |
|
|
|
|
|
|
|
$fileName = implode(',',$images);
print_r($fileName);
chick_p1.jpg,IMG_3266.JPG,,,,,,,,,,,,
จะตัดคอมม่าด้านหลังออกยังไงครับในกรณีอัฟโหลดรูปที่มีค่าว่างเข้ามา เพราะค่าว่างมันเข้าฐานข้อมูลอ่ะครับ อยากให้เข้าเฉพาะรูป
หรือมีวิธี insert ที่ไม่ใช่ค่าว่างไหมครับผม
ขอบคุณครับ
Tag : PHP
|
|
|
|
|
|
Date :
2018-10-08 15:20:15 |
By :
teedesign |
View :
594 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$fileName = implode(',',$images);
print_r(array_values(array_filter($fileName )));
|
|
|
|
|
Date :
2018-10-08 15:31:57 |
By :
Guest |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คห. 1 สลับกัน ต้องเอา $images ใส่ไปใน array_filter
Code (PHP)
$images = array_values(array_filter($images));
$fileName = implode(',', $images);
var_dump($fileName);
แก้แล้วพอดีเพิ่งเห็น
|
ประวัติการแก้ไข 2018-10-08 15:47:23
|
|
|
|
Date :
2018-10-08 15:46:40 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับผมได้แว้วคร๊าบบ...
$images[] = $fileName;
}
$images_filter = array_values(array_filter($images));
$fileName = implode(',',$images_filter);
// print_r($fileName);
$this->welcome->upload_image($this->input->post(),$fileName);
redirect('welcome/view');
}
|
|
|
|
|
Date :
2018-10-08 15:48:06 |
By :
teedesign |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|