All Projects → conneg → mimeparse-php

conneg / mimeparse-php

Licence: other
Basic functions for handling mime-types, forked from Joe Gregorio's mimeparse library

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to mimeparse-php

Mailkit
A cross-platform .NET library for IMAP, POP3, and SMTP.
Stars: ✭ 4,477 (+11681.58%)
Mutual labels:  mime, mime-parser
enough mail
IMAP, POP3 and SMTP clients for Dart developers. Contains both low level as well as a high level API.
Stars: ✭ 78 (+105.26%)
Mutual labels:  mime, mime-parser
Simple Mail
An SMTP library written in C++ for Qt. Allows applications to send emails (MIME with text, html, attachments, inline files, etc.) via SMTP. Supports SSL and SMTP authentication.
Stars: ✭ 134 (+252.63%)
Mutual labels:  mime
slim3-api-skeleton
Slim 3 API Skeleton with content negotiation, authentication, error handling, cache and performance in mind.
Stars: ✭ 12 (-68.42%)
Mutual labels:  content-negotiation
Enmime
MIME mail encoding and decoding package for Go
Stars: ✭ 246 (+547.37%)
Mutual labels:  mime
Acl
Server framework and network components written by C/C++ for Linux, Mac, FreeBSD, Solaris(x86), Windows, Android, IOS
Stars: ✭ 2,113 (+5460.53%)
Mutual labels:  mime
Simplemagic
Simple file magic number and content-type library which provides mime-type determination from files and byte arrays
Stars: ✭ 146 (+284.21%)
Mutual labels:  mime
Swime
🗂 Swift MIME type checking based on magic bytes
Stars: ✭ 119 (+213.16%)
Mutual labels:  mime
localization-middleware
PSR-15 middleware to assist primarily with language-based content negotiation and various other localization tasks
Stars: ✭ 24 (-36.84%)
Mutual labels:  content-negotiation
Mailyak
An elegant MIME/SMTP email library with support for attachments
Stars: ✭ 244 (+542.11%)
Mutual labels:  mime
negotiation
PSR-15 middleware to implement content negotiation
Stars: ✭ 42 (+10.53%)
Mutual labels:  content-negotiation
Vmime
VMime Mail Library
Stars: ✭ 218 (+473.68%)
Mutual labels:  mime
Mime
The MIME component allows manipulating MIME types.
Stars: ✭ 2,174 (+5621.05%)
Mutual labels:  mime
Mail Mime
Create MIME messages with PHP
Stars: ✭ 42 (+10.53%)
Mutual labels:  mime
AdES
An Implementation of CAdES, XAdES, PAdES and ASiC for Windows in C++
Stars: ✭ 29 (-23.68%)
Mutual labels:  mime
Fileio.jl
Main Package for IO, loading all different kind of files
Stars: ✭ 133 (+250%)
Mutual labels:  mime
Go Message
✉️ A streaming Go library for the Internet Message Format and mail messages
Stars: ✭ 193 (+407.89%)
Mutual labels:  mime
mimesniff
MIME Sniffing Standard
Stars: ✭ 89 (+134.21%)
Mutual labels:  mime
mimesniffer
A MIME type sniffer for Go.
Stars: ✭ 22 (-42.11%)
Mutual labels:  mime
fs2-mail
asynchronous library for sending and receiving mail via fs2._
Stars: ✭ 39 (+2.63%)
Mutual labels:  mime

bitworking/mimeparse

Source Code Latest Version Software License Build Status Scrutinizer Coverage Status Total Downloads

This library provides basic functionality for parsing mime-types names and matching them against a list of media-ranges. See section 5.3.2 of RFC 7231 (HTTP semantics and content specification) for a complete explanation. More information on the library can be found in the XML.com article "Just use Media Types?"

This library was taken from the original mimeparse library on Google Project Hosting and has been cleaned up to conform to PSR-1, PSR-2, and PSR-4 standards. It also now has support for Composer. The Bitworking namespace is a nod to Joe Gregorio, the original author of this library.

Installation

The preferred method of installation is via Packagist and Composer. Run the following command to install the package and add it as a requirement to your project's composer.json:

composer require bitworking/mimeparse

Examples

Use Mimeparse to specify a list of media types your application supports and compare that to the list of media types the user agent accepts (via the HTTP Accept header; $_SERVER['HTTP_ACCEPT']). Mimeparse will give you the best match to send back to the user agent for your list of supported types or null if there is no best match.

<?php
$supportedTypes = array('application/xbel+xml', 'text/xml');
$httpAcceptHeader = 'text/*;q=0.5,*/*; q=0.1';

$mimeType = \Bitworking\Mimeparse::bestMatch($supportedTypes, $httpAcceptHeader);

echo $mimeType; // Should echo "text/xml"

You may also use Mimeparse to get the quality value of a specific media type when compared against a range of media types (from the Accept header, for example).

<?php
$httpAcceptHeader = 'text/*;q=0.3, text/html;q=0.7, text/html;level=1, text/html;level=2;q=0.4, *\/*;q=0.5';

$quality = \Bitworking\Mimeparse::quality('text/html', $httpAcceptHeader);

echo $quality; // Should echo 0.7

Contributing

Contributions are welcome! Please read CONTRIBUTING for details.

Copyright and license

The original mimeparse library is copyright © Joe Gregorio. The bitworking/mimeparse library for PHP is copyright © Ben Ramsey. Both authors have licensed the source for use under the MIT License (MIT). Please see LICENSE for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].