peterkahl / apple-ios-build-version
This package is abandoned and no longer maintained.
No replacement package was suggested.
Associative array of iOS build and version codes.
Package info
github.com/peterkahl/apple-ios-build-version
pkg:composer/peterkahl/apple-ios-build-version
v59.34
2020-03-15 07:59 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2021-01-02 17:58:38 UTC
README
Associative array of iOS build and version codes.
Usage
use peterkahl\iOSbuild\iOSbuild; # Takes iOS build code and returns corresponding iOS version. echo '14F5080a ............ '. iOSbuild::getVersion('14F5080a') ."\n"; # Let's try build code that's not in our array: echo '14E287 ............ '. iOSbuild::getVersion('14E287') ."\n"; /* 14F5080a ............ 10.3.2b3 14E287 ............ 10.3 */ # Are build/version data outdated? Older than 30 days: if (iOSbuild::GetDataTimestamp() < time() - 30*86400) { echo 'OUTDATED'; # Send email to admin to do something? } # Returns associative array of iOS versions. $array = iOSbuild::getArray(); # Returns a randomly chosen iOS Calendar User Agent string. echo iOSbuild::getCalendarUA(); # iOS/10.0.1 (14A403) dataaccessd/1.0 # Optionally, you can specify a minimum version of iOS (to get random User Agent string). # Argument must be a string in format 'MAJOR.MINOR' (1 dot only.) echo iOSbuild::getCalendarUA('6.0');