Как задать url адрес изображению?

0

Как сделать так, чтобы фотографии пользователя задавался URL адрес?

<?php

defined('BASEPATH') OR exit("No direc script access allowed");

class Photo extends MY_Controller {
public function __construct() {
parent::__construct();
$this->load->model('Photo_model');
}

public function index() {
$this->data['title'] = 'Главная страница';
$this->load->library('image_lib');

/*$this->data['photo_news'] = $this->Photo_model->getPhotoNews();*/

if($this->input->post('poster') && $this->input->post('slug')) {
$slug = $this->input->post('slug');
$post = $this->input->post($this->input->post('slug'));



if($this->Photo_model->setPhotos($post, $slug)) {
$this->data['title'] = 'Фото добавлено!';
$this->load->view('main/photoCreate');
}
} else {
$this->load->view('main/photoError', $this->data);
}
}
}
codeigniter

1 ответов

0
$this->load->library('image_lib');

Я не пользовался этой библиотекой для img, но предполагаю, что есть в ней метод получения пути сохранения картинки:

https://www.codeigniter.com/userguide3/libraries/image_lib.html

Sign up or Log in to write an answer