sysout/php-app-mobile-version

读取应用商店和Google Play中的应用版本

1.1.0 2022-05-30 17:33 UTC

This package is auto-updated.

Last update: 2024-09-29 06:14:44 UTC


README

安装

安装AppMobileVersion的推荐方法是使用Composer。

composer require sysout/php-app-mobile-version

文档

要使用整个appversion库,你应在Laravel中遵循以下结构

$options = [
    'bundleId' => 'package id',
    'useCache' => true,
    'cacheFilePath' => '/var/www/mobile-version.json',
    'cachePeriod' => 3600
];

$api= new AppMobileVersion($options);

$data =[
    $androidVersion = 'android: '.$api->getAndroid(),
    $iosVersion = 'ios: '.$api->getIos()
];

echo $data;