Cartella md5 con data

peterminnow

Nuovo Utente
29 Gen 2007
24
0
0
Salve a tutti,
avrei questo problemino da risolvere, nel creare la cartella in md5 vorrei aggiungere anche la data, quindi nel caso avere 01-01-2008_A5BC7

Al momento sto usando questo


PHP:
$append = http_build_query(array( 	
session_name()	=> session_id(), 
'batch_id'		=> substr(strtoupper(md5(rand(0, 999999999))), 2, 5)
), null, '&');



PHP:
session_name('SID'); 
session_start();  
$batch_id = $_GET['batch_id'];

umask(0);
if(!file_exists($batch_id)) mkdir($batch_id);



grazie, un saluto a tutti!



Peter
 
Prova:
PHP:
$data = date("d-m-Y");
$batch_id = $data . "_". $_GET['batch_id'];
 

Discussioni simili