PHP code example of sharksoft / sharkipaparser
1. Go to this page and download the library: Download sharksoft/sharkipaparser library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sharksoft / sharkipaparser example snippets
composer install
//instance
$shark = new SharkIpaParser\SharkIpaParserHelper();
$shark->load_ipa('C:\Users\mario\Desktop\test.ipa');
$array_plist = $shark->read_plist();
echo $array_plist['CFBundleName'];