I am working for a PHP project that retrieves file meta information.
All I know are filename, file size, date modified.
Anybody knows the other meta information that can I get into a file using PHP?
If there are, would you write down the PHP code?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are asking for meta tags info, use
get_meta_tags()to retrieve all meta information.NEW EDIT —
For File Info, you can use
fstat()method —OUTPUT–