Jump to content
php.lv forumi

file uploading


Analgiins

Recommended Posts

atkarīgs no faila. ja tevi interesē parasts teksta fails, tad ņem un ieliec lapā <textarea> elementu un liec apmeklētājiem ar copy -> paste ielikt faila saturu attiecīgajā laukā. Ja dati ir bināri (bildes, arhīvi, programmas, utt) tad tas neies cauri.

Link to comment
Share on other sites

Idejiski šitā :

<?php
// failu paarveido
// uz base64
$fails='orginal';
$new_file='new_orginal';
//
$ext[0]='.png';
$ext[1]='.base64';
$a=implode('',file("$fails$ext[0]"));
$b=base64_encode($a);
$fp=fopen("$fails$ext[1]",'w+');
fwrite($fp,$b);
fclose($fp);
// atveido
// un noseivo jaunu
$c=implode('',file("$fails$ext[1]"));
$d=base64_decode($c);
$fp=fopen("$new_file$ext[0]",'w+');
fwrite($fp,$d);
fclose($fp);
// idzeesh .base64
unlink("$fails$ext[1]");
?>

;)

Link to comment
Share on other sites

×
×
  • Create New...