PHP - remove

后端 未结 7 2495
梦如初夏
梦如初夏 2020-11-27 15:15

Hey, I need to delete all images from a string and I just can\'t find the right way to do it.

Here is what I tryed, but it doesn\'t work:

preg_replac         


        
7条回答
  •  醉话见心
    2020-11-27 15:32

    simply use the form_validation class of codeigniter:

    strip_image_tags($str).
    
    $this->load->library('form_validation');
    $this->form_validation->set_rules('nombre_campo', 'label', 'strip_image_tags');
    

提交回复
热议问题