compatibility-test.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?php
  2. // Run this script from the command line to see if your system is able to run
  3. // the AWS SDK for PHP
  4. class CompatibilityTest
  5. {
  6. protected $isCli;
  7. protected $lines = array();
  8. public function __construct()
  9. {
  10. $this->isCli = php_sapi_name() == 'cli';
  11. $title = 'AWS SDK for PHP Compatibility Test';
  12. if ($this->isCli) {
  13. $rep = str_repeat('=', strlen($title));
  14. $this->lines[] = "{$rep}\n{$title}\n{$rep}";
  15. } else {
  16. $this->lines[] = sprintf(
  17. '<style type="text/css">%s %s</style>',
  18. 'html {font-family:verdana;} .OK {color: #166116;}',
  19. '.FAIL {margin-top: 1em; color: #A52C27;} .WARNING {margin-top: 1em; color:#6B036B;}'
  20. );
  21. $this->lines[] = "<h1>{$title}</h1>";
  22. }
  23. }
  24. public function endTest()
  25. {
  26. $text = implode("\n", $this->lines);
  27. echo $this->isCli ? $text : "<html><body>{$text}</body></html>";
  28. }
  29. public function title($text)
  30. {
  31. $this->lines[] = $this->isCli
  32. ? "\n" . $text . "\n" . str_repeat('-', strlen($text)) . "\n"
  33. : "<h2>{$text}</h2>";
  34. }
  35. public function write($text)
  36. {
  37. $this->lines[] = $text;
  38. }
  39. public function quote($text)
  40. {
  41. return !$this->isCli
  42. ? "<pre>{$text}</pre>"
  43. : implode("\n", array_map(function ($t) { return ' ' . $t; }, explode("\n", $text)));
  44. }
  45. public function check($info, $func, $text, $required)
  46. {
  47. $level = $func() ? 'OK' : ($required ? 'FAIL' : 'WARNING');
  48. if ($this->isCli) {
  49. $text = $level == 'OK' ? "- {$info}: [OK]" : "- {$info}: [{$level}]\n - {$text}";
  50. } else {
  51. $text = $level == 'OK'
  52. ? "<span class=\"{$level}\">{$info}</span><br />"
  53. : "<div class=\"{$level}\">{$info}: [{$level}]<br /><blockquote>{$text}</blockquote></div>";
  54. }
  55. $this->write($text);
  56. }
  57. public function addRecommend($info, $func, $text)
  58. {
  59. $this->check($info, $func, $text, false);
  60. }
  61. public function addRequire($info, $func, $text)
  62. {
  63. $this->check($info, $func, $text, true);
  64. }
  65. public function iniCheck($info, $setting, $expected, $required = true, $help = null)
  66. {
  67. $current = ini_get($setting);
  68. $cb = function () use ($current, $expected) {
  69. return is_callable($expected)
  70. ? call_user_func($expected, $current)
  71. : $current == $expected;
  72. };
  73. $message = sprintf(
  74. '%s in %s is currently set to %s but %s be set to %s.',
  75. $setting,
  76. php_ini_loaded_file(),
  77. var_export($current, true),
  78. $required ? 'must' : 'should',
  79. var_export($expected, true)
  80. ) . ' ' . $help;
  81. $this->check($info, $cb, trim($message), $required);
  82. }
  83. public function extCheck($ext, $required = true, $help = '')
  84. {
  85. $info = sprintf('Checking if the %s extension is installed', $ext);
  86. $cb = function () use ($ext) { return extension_loaded($ext); };
  87. $message = $help ?: sprintf('The %s extension %s be installed', $ext, $required ? 'must' : 'should');
  88. $this->check($info, $cb, $message, $required);
  89. }
  90. }
  91. $c = new CompatibilityTest();
  92. $c->title('System requirements');
  93. $c->addRequire(
  94. 'Ensuring that the version of PHP is >= 5.5.0',
  95. function () { return version_compare(phpversion(), '5.5.0', '>='); },
  96. 'You must update your version of PHP to 5.5.0 to run the AWS SDK for PHP'
  97. );
  98. $c->iniCheck('Ensuring that detect_unicode is disabled', 'detect_unicode', false, true, 'Enabling detect_unicode may cause errors when using phar files. See https://bugs.php.net/bug.php?id=42396');
  99. $c->iniCheck('Ensuring that session.auto_start is disabled', 'session.auto_start', false);
  100. if (extension_loaded('suhosin')) {
  101. $c->addRequire(
  102. 'Ensuring that phar files can be run with the suhosin patch',
  103. function () {
  104. return false !== stripos(ini_get('suhosin.executor.include.whitelist'), 'phar');
  105. },
  106. sprintf('suhosin.executor.include.whitelist must be configured to include "phar" in %s so that the phar file works correctly', php_ini_loaded_file())
  107. );
  108. }
  109. foreach (array('pcre', 'spl', 'json', 'simplexml') as $ext) {
  110. $c->extCheck($ext, true);
  111. }
  112. if (function_exists('curl_version')) {
  113. $c->addRequire('Ensuring that cURL can send https requests', function () {
  114. $version = curl_version();
  115. return in_array('https', $version['protocols'], true);
  116. }, 'cURL must be able to send https requests');
  117. }
  118. $c->addRequire('Ensuring that file_get_contents works', function () {
  119. return function_exists('file_get_contents');
  120. }, 'file_get_contents has been disabled');
  121. $c->title('System recommendations');
  122. $c->addRecommend('Checking if you are running on a 64-bit platform', function () {
  123. return PHP_INT_MAX === 9223372036854775807;
  124. }, 'You are not running on a 64-bit installation of PHP. You may run into issues uploading or downloading files larger than 2GB.');
  125. $c->iniCheck('Ensuring that zend.enable_gc is enabled', 'zend.enable_gc', true, false);
  126. $c->check('Ensuring that date.timezone is set', function () {
  127. return (bool) ini_get('date.timezone');
  128. }, 'The date.timezone PHP ini setting has not been set in ' . php_ini_loaded_file(), false);
  129. if (extension_loaded('xdebug')) {
  130. $c->addRecommend('Checking if Xdebug is installed', function () { return false; }, 'Xdebug is installed. Consider uninstalling Xdebug to make the SDK run much faster.');
  131. $c->iniCheck('Ensuring that Xdebug\'s infinite recursion detection does not erroneously cause a fatal error', 'xdebug.max_nesting_level', 0, false);
  132. }
  133. $c->extCheck('dom',false);
  134. $c->extCheck('curl',false);
  135. $c->extCheck('openssl', false);
  136. $c->extCheck('zlib', false);
  137. $c->iniCheck('Checking if OPCache is enabled', 'opcache.enable', 1, false);
  138. $c->title('PHP information');
  139. ob_start();
  140. phpinfo(INFO_GENERAL);
  141. $info = ob_get_clean();
  142. $c->write($c->quote($info));
  143. $c->endTest();