공부/PHP

php 파일(경로,데이터)로 mime_type 찾기

2018. 6. 19. 21:56

파일 경로로 mime type 찾기

mime_content_type()

string mime_content_type ( string $filename )


파일 데이터로 mime type 찾기

http://php.net/manual/en/function.finfo-buffer.php


Procedural style

string finfo_buffer ( resource $finfo , string $string = NULL [, int $options = FILEINFO_NONE [, resource $context = NULL ]] )


Object oriented style

public string finfo::buffer ( string $string = NULL [, int $options = FILEINFO_NONE [, resource $context = NULL ]] )


This function is used to get information about binary data in a string.


예)

buffer($buffer);
}
?> (js)


반응형