Файл: mc-2.6.4/libraries/j2me_tools.php
Строк: 36
<?php
/**
     * MobileCMS
     *
     * Open source content management system for mobile sites
     *
     * @author MobileCMS Team <support@mobilecms.ru>
     * @copyright Copyright (c) 2011, MobileCMS Team
     * @link http://mobilecms.ru Official site
     * @license http://opensource.org/licenses/gpl-license.php GNU Public License
     */
defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');
/**
 * Класс для работы с j2me
 */
class j2me_tools {
    /**
     * Генерация jad из jar
     * @param string $jar_path
     * @param string $jar_url
     */
    public static function get_jad($jar_path, $jar_url) {
        if ( ! class_exists('PclZip')) {
            a_import('libraries/pclzip.lib');
        }
        if ( ! file_exists($jar_path)) {
            a_error('JAR файл не найден!');
        }
    $zip = new PclZip($jar_path);
    $manifest_arr = $zip->extract(PCLZIP_OPT_BY_NAME, 'META-INF/MANIFEST.MF', PCLZIP_OPT_EXTRACT_AS_STRING);
    if ( ! $manifest = $manifest_arr[0]['content']) {
        a_error('Manifest не найден!');
    }
    $jar_filesize = filesize($jar_path);
    $midlet_jar_size  = sprintf("MIDlet-Jar-Size: %d", $jar_filesize);
        $midlet_jar_url   = sprintf("MIDlet-Jar-URL: %s", $jar_url);
        $jad_content = sprintf("%sn%sn%sn", trim($manifest), $midlet_jar_size, $midlet_jar_url);
    return $jad_content;
    }
}
?>