LoginSignup
0
2

More than 5 years have passed since last update.

入っているAWS SDK for PHPのバージョンを雑に調べる

Last updated at Posted at 2015-07-27

プログラムの中でSDKのバージョンによって挙動を変えたい場合など。

<?php

if (class_exists('\Aws\Sdk')) {
    var_dump(\Aws\Sdk::VERSION);
    // ver3.x
} elseif (class_exists('\Aws\Common\Aws')) {
    var_dump(\Aws\Common\Aws::VERSION);
    // ver2.x
}

string(5) "3.2.1"

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2