芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/cloud.pulsehost.co.uk/vendor/qualityunit/tnef-decoder/README.md
# TNEFDecoder Simple PHP library to decode TNEF files (winmail.dat). It is based on [SquirellMail plugin](https://squirrelmail.org/plugin_view.php?id=62) #Requirements: - PHP >= 7.0 - PHP-mbstring extension #Usage Include via composer: ``` composer require qualityunit/tnef-decoder ``` Create object to parse attachment file ``` $attachment = new TNEFAttachment(); ``` Parse string with attachment file and receive array of extracted file objects. ``` $attachment->decodeTnef($buffer); $files = $attachment->getFiles(); ```