From professional translators, enterprises, web pages and freely available translation repositories.
main text
일반 텍스트
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
this feature lets people upload both text and binary files.
php는 rfc-1867을 지원하는 브라우저로부터 파일을 업로드 받을 수 있는 기능이 있다. 이 기능을 사용하면 text뿐 아니라 binary파일도 업로드가 가능하다. 여러분은 php의 authetication과 파일을 다루는 함수를 사용하여, 파일이 upload된 후에 해야 할 일을 스크립트에 반드시 정해 두어야 한다.
some notes on the use of blobs (text and byte columns):
some notes on the use of blobs (text and byte columns): blobs are normally addressed by blob identifiers. select queries return a "blob id" for every byte and text column. you can get at the contents with "string_var = ifx_get_blob($blob_id);" if you choose to get the blobs in memory (with: "ifx_blobinfile(0);"). if you prefer to receive the content of blob columns in a file, use "ifx_blobinfile(1);", and "ifx_get_blob($blob_id);" will get you the filename. use normal file i/o to get at the blob contents.