Skip to content

This is a full native PHP code to get info of the .IPA file

License

Notifications You must be signed in to change notification settings

AmeerDesginer/ExtractIPA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

ExtractIPA

This is a full native PHP code to get info of the .IPA file

How to use it

just include the file that contain the function and call it by

$ipa = ExtractIPA("HERE_YOUR_IPA_PATH");

// to get name
$name = $ipa['name'];

// to get bundle id
$bundle_id = $ipa['bundle_id'];

// to get version
$version = $ipa['version'];

// to get img (I convert it to base64 to make it easy to use)
$icon_content = $ipa['icon_content'];

You can easily to decode the base64 by base64_decode($icon_content); Then you can do what you want with the content!

I hope this help you!

About

This is a full native PHP code to get info of the .IPA file

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages