Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > contrib-release > by-pkgid > f9fdb5973ce3bd34a0daf9cf0cee7d13 > files > 2

php-pear-MIME_Type-1.0.0-7mdv2008.1.noarch.rpm

<?php

ini_set('error_reporting', E_ALL);
require 'MIME/Type.php';
//require './Type.php';

$type = 'application/x-test-app; foo="bar" (First argument); bar=baz (Second argument)';
$type2 = 'application/vnd.pear.test-type';

print "Checking type: $type\n";
if (MIME_Type::isExperimental($type)) {
    print "Type is experimental\n";
} else {
    print "Type is not experimental\n";
}

print "\nChecking type: $type2\n";
if (MIME_Type::isVendor($type2)) {
    print "Type is vendor-specific\n";
} else {
    print "Type is not vendor-specific\n";
}

$file = '@doc_dir@/@package@/example.php';
print "\nChecking type of: $file\n";
print MIME_Type::autoDetect($file)."\n";

?>