123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- use BaiduBce\BceClientConfigOptions;
- error_reporting(-1);
- date_default_timezone_set('UTC');
- define('__BOS_CLIENT_ROOT', dirname(__DIR__));
- $BOS_TEST_CONFIG =
- array(
- 'credentials' => array(
- 'accessKeyId' => 'your ak',
- 'secretAccessKey' => 'your sk',
- 'sessionToken' => 'your session token'
- ),
- 'endpoint' => 'host',
- 'stsEndpoint' => 'sts host',
- );
- $CUSTOM_BOS_TEST_CONFIG =
- array(
- 'credentials' => array(
- 'accessKeyId' => 'your ak',
- 'secretAccessKey' => 'your sk',
- 'sessionToken' => 'your session token'
- ),
- 'endpoint' => 'customized host',
- 'custom' => true,
- 'stsEndpoint' => 'sts host',
- );
- $SMS_TEST_CONFIG =
- array(
- BceClientConfigOptions::PROTOCOL => 'http',
- BceClientConfigOptions::REGION => 'bj',
- 'credentials' => array(
- 'ak' => 'your ak',
- 'sk' => 'your sk'
- ),
- 'endpoint' => 'smsv3.bj.baidubce.com',
- );
- $STDERR = fopen('php://stderr', 'w+');
- $__handler = new \Monolog\Handler\StreamHandler($STDERR, \Monolog\Logger::DEBUG);
- $__handler->setFormatter(
- new \Monolog\Formatter\LineFormatter(null, null, false, true)
- );
- \BaiduBce\Log\LogFactory::setInstance(
- new \BaiduBce\Log\MonoLogFactory(array($__handler))
- );
- \BaiduBce\Log\LogFactory::setLogLevel(\Psr\Log\LogLevel::DEBUG);
|