get_sdk_requirements_errors(); if ( ! $errors ) { return ''; } $msg = __( 'The official Amazon Web Services SDK requires PHP 5.3.3+ and cURL 7.16.2+ compiled with OpenSSL and zlib. Your server currently has', 'amazon-web-services' ); if ( count( $errors ) > 1 ) { $last_one = ' and ' . array_pop( $errors ); } else { $last_one = ''; } $msg .= ' ' . implode( ', ', $errors ) . $last_one . '.'; return $msg; } }