Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 exif_read_data返回评论属性
链接: http ://www.php.net/manual/en/function.exif-read-data.php
$comments = exif_read_data('tests/test2.jpg', 'COMMENT', true); foreach ($comments as $name => $val) { echo "$name: $val<br />\n"; }