sun's longitude:37 05 38 
¡¤ ÀÚÀ¯°Ô½ÃÆÇ ¡¤ ¹¯°í´äÇϱ⠡¤ ¾ËÆĹ®¼­ ¡¤ RPMS list
¡¤ »ç¿ëÀÚ¹®¼­ ¡¤ ÆÁ/FAQ¸ðÀ½ ¡¤ ¸®´ª½ºLinks ¡¤ ÀÚ·á½Ç
¡¤ ¼­¹öÁ¤º¸ ¡¤ ¿î¿µÀÚ ¡¤ Books/FAQ ¡¤ FreeBSD
 
/board/read.php:¼Ò½ºº¸±â   
 
¾ËÆĹ®¼­
ÀÚÁÖ Àؾî¸Ô°Å³ª, ¸Þ¸ðÇØ µÑ Çʿ伺ÀÌ ÀÖ´Â ÆÁÀ̳ª ¹®¼­, ±âŸ µîµî
[*** ¾²±â ±ÝÁö´Ü¾î ÆÐÅÏ ***]
±Û º»¹® Áß°£¿¡ ¾÷·ÎµåÇÒ À̹ÌÁö¸¦ Ãß°¡ÇÏ´Â ¹æ¹ý : @@À̹ÌÁöÀ̸§@@
ex) @@foo.gif@@
235 ¹ø ±Û: [php] ´ë¿ë·® post ÆÄÀÏ Ã³¸®
±Û¾´ÀÌ: »êÀÌ [ȨÆäÀÌÁö] ±Û¾´³¯: 2010³â 03¿ù 26ÀÏ 00:41:23 ±Ý(»õº®) Á¶È¸: 3014
[php] ´ë¿ë·® post ÆÄÀÏ Ã³¸®

-- php.ini ------------------
file_uploads = On
upload_max_filesize = 300M
post_max_size = 350M
max_execution_time = 30
max_input_time = 60
memory_limit = 512M ;; // not work in script file
-----------------------------

-----------------------------
$tofile = 'foobar.data';
$fp = fopen('php://input','r'); // HTTP/POST raw data
while(!feof($fp))
{
  $buf = fread($fp,1048576);
  file_put_contents($tofile,$buf,FILE_APPEND);
}
fclose($fp);
-----------------------------

or

-----------------------------
$tofile = 'foobar.data';
$src = fopen('php://input','r'); // HTTP/POST raw data
$dst = fopen($tofile,'w');
stream_copy_to_stream($src,$dst);
fclose($dst);
fclose($src);
-----------------------------

 
ÀÌÀü±Û : [iptables] port forwarding
´ÙÀ½±Û : [php] xml object to array  
 from 114.111.62.248
JS(Redhands)Board 0.4 +@

|±Û¾²±â| |´äÀå¾²±â| |¼öÁ¤| |»èÁ¦|
|ÀÌÀü±Û| |´ÙÀ½±Û| |¸ñ·Ïº¸±â|
Àμâ¿ë 

apache lighttpd linuxchannel.net 
Copyright 1997-2024. linuxchannel.net. All rights reserved.

Page loading: 0.01(server) + (network) + (browser) seconds