bamalik1996/ipa-parser-php
Composer 安装命令:
composer require bamalik1996/ipa-parser-php
包简介
The PHP IPA ISO Parser is a robust tool tailored for extracting and interpreting data from IPA (iOS App Store Package) builds. Seamlessly dive into the core details of any IPA file, retrieve essential metadata, and streamline your iOS app analysis and deployment processes with this efficient package
README 文档
README
The PHP IPA ISO Parser is a robust tool tailored for extracting and interpreting data from IPA (iOS App Store Package) builds. Seamlessly dive into the core details of any IPA file, retrieve essential metadata, and streamline your iOS app analysis and deployment processes with this efficient package.
Installation
You can install the package via composer:
composer require bamalik1996/ipa-parser-php
Usage
$parser = new IPAParser('path_to_your_ipa_file.ipa'); if ($parser->extractInfoPlist()) { $parser->convertPlistToXml(); $appInfo = $parser->getAppInfo(); echo "App Name: " . $appInfo['CFBundleName'] . "\n"; echo "Bundle Identifier: " . $appInfo['CFBundleIdentifier'] . "\n"; echo "Version: " . $appInfo['CFBundleShortVersionString'] . "\n"; // ... and so on for other keys you're interested in } else { echo "Failed to extract Info.plist."; }
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Credits
统计信息
- 总下载量: 70
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-09-26