1
0
mirror of https://github.com/AlexKrunch/AnonIB-3D.git synced 2024-09-30 07:45:24 -04:00
AnonIB-3D/ready2use/srv/php/Models/FakeFile.php
2019-08-17 10:21:07 +02:00

24 lines
731 B
PHP

<?
require_once 'Utils/Helpers.php';
class FakeFile {
/*
'id' => 'integer',
'id_post' => 'integer',
'thread_key' => 'string',
'fake_path' => 'string',
'fake_name' => 'string',
'file_name' => 'string'*/
function __construct($file_path_, $file_ext_, $map_key ) {
$name = uniqid();
$this ->fake_name = $name.'.'.$file_ext_;
$this ->file_name = Helpers::getRealFileName($this ->fake_name).'.'.$file_ext_;
//$this ->fake_path = $file_path_."img/".$map_key."_". $this ->file_name;
$this ->fake_path = $file_path_."php/uploads/".$map_key."/".Helpers::getRealFileName($this ->fake_name).'.'.$file_ext_;
$this ->map_key = $map_key;
}
}