uawdijnntqw1x1x1
IP : 216.73.216.54
Hostname : neogeopocket.gameplayer.club
Kernel : Linux neogeopocket.gameplayer.club 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
www
/
html
/
1c732
/
..
/
1c732
/
.
/
..
/
libraries
/
Prism
/
Utilities
/
FileHelper.php
/
/
<?php /** * @package Prism * @subpackage Utilities * @author Todor Iliev * @copyright Copyright (C) 2017 Todor Iliev <todor@itprism.com>. All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt */ namespace Prism\Utilities; // no direct access defined('JPATH_PLATFORM') or die; /** * This class contains methods that are used for working with files. * * @package Prism * @subpackage Utilities */ abstract class FileHelper { /** * Return line that reads from file. * It uses PHP generators to do that. * * <code> * $file = '../../filename.csv'; * * foreach (Prism\Utilities\FileHelper::getLine($file) as $key => $value) { * ... * } * </code> * * @param string $file * * @return \Iterator */ public static function getLine($file) { $f = fopen($file, 'r'); try { while ($line = fgets($f)) { yield $line; } } finally { fclose($f); } } /** * Return maximum file size (in KB) that can be uploaded. * * <code> * $maxFileSize = Prism\Utilities\FileHelper::getMaximumFileSize($file); * </code> * * @param int $maxFileSizeByUser Maximum file size set by user. * @param string $format Format that will be returned - MB or KB. * * @return int */ public static function getMaximumFileSize($maxFileSizeByUser = 0, $format = 'KB') { $values = array(); $KB = 1024 * 1024; if ($maxFileSizeByUser > 0) { $values[] = $maxFileSizeByUser * $KB; } // Verify file size $uploadMaxFileSize = (int)ini_get('upload_max_filesize'); if ($uploadMaxFileSize > 0) { $values[] = $uploadMaxFileSize * $KB; } $postMaxSize = (int)ini_get('post_max_size'); if ($postMaxSize > 0) { $values[] = $postMaxSize * $KB; } $memoryLimit = (int)ini_get('memory_limit'); if ($memoryLimit !== -1) { $memoryLimit *= $KB; } if ($memoryLimit > 0) { $values[] = $memoryLimit; } $result = min($values); return (($result > 0.0) and (strcmp($format, 'MB') === 0)) ? $result / $KB : $result; } /** * Check if the file name has extension of an image. * * <code> * $filename = 'picture1.png'; * * if (Prism\Utilities\FileHelper::isImageExtension($filename)) { * // ... * } * </code> * * @param string $filename * * @return bool */ public static function isImageExtension($filename) { $extensions = array('jpg', 'jpeg', 'bmp', 'gif', 'png'); $fileExtension = \JFile::getExt($filename); return (($fileExtension !== null and $fileExtension !== '') and in_array($fileExtension, $extensions, true)); } /** * Check if a mime type is an image. * * <code> * $mimeType = 'image/png'; * * if (Prism\Utilities\FileHelper::isImageMime($mimeType)) { * // ... * } * </code> * * @param string $mimeType * * @return bool */ public static function isImageMime($mimeType) { $mimeTypes = array('image/png', 'image/gif', 'image/jpeg', 'image/pjpeg', 'image/bmp', 'image/x-windows-bmp'); return (($mimeType !== null and $mimeType !== '') and in_array($mimeType, $mimeTypes, true)); } }
/var/www/html/1c732/../1c732/./../libraries/Prism/Utilities/FileHelper.php