Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/wikimedia/less.php/lib/Less/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/wikimedia/less.php/lib/Less/Mime.php
<?php
/**
 * Mime lookup
 *
 * @private
 */
class Less_Mime {

	// this map is intentionally incomplete
	// if you want more, install 'mime' dep
	private static $types = [
		'.htm' => 'text/html',
		'.html' => 'text/html',
		'.gif' => 'image/gif',
		'.jpg' => 'image/jpeg',
		'.jpeg' => 'image/jpeg',
		'.png' => 'image/png',
		'.ttf' => 'application/x-font-ttf',
		'.otf' => 'application/x-font-otf',
		'.eot' => 'application/vnd.ms-fontobject',
		'.woff' => 'application/x-font-woff',
		'.svg' => 'image/svg+xml',
	];

	public static function lookup( $filepath ) {
		$parts = explode( '.', $filepath );
		$ext = '.' . strtolower( array_pop( $parts ) );

		return self::$types[$ext] ?? null;
	}

	public static function charsets_lookup( $type = null ) {
		// assumes all text types are UTF-8
		return $type && preg_match( '/^text\//', $type ) ? 'UTF-8' : '';
	}
}

Spamworldpro Mini