# Stripe PHP bindings
[![Build Status](https://travis-ci.org/stripe/stripe-php.svg?branch=master)](https://travis-ci.org/stripe/stripe-php)
[![Latest Stable Version](https://poser.pugx.org/stripe/stripe-php/v/stable.svg)](https://packagist.org/packages/stripe/stripe-php)
[![Total Downloads](https://poser.pugx.org/stripe/stripe-php/downloads.svg)](https://packagist.org/packages/stripe/stripe-php)
[![License](https://poser.pugx.org/stripe/stripe-php/license.svg)](https://packagist.org/packages/stripe/stripe-php)
[![Code Coverage](https://coveralls.io/repos/stripe/stripe-php/badge.svg?branch=master)](https://coveralls.io/r/stripe/stripe-php?branch=master)
The Stripe PHP library provides convenient access to the Stripe API from
applications written in the PHP language. It includes a pre-defined set of
classes for API resources that initialize themselves dynamically from API
responses which makes it compatible with a wide range of versions of the Stripe
API.
## Requirements
PHP 5.6.0 and later.
## Composer
You can install the bindings via [Composer](http://getcomposer.org/). Run the following command:
```bash
composer require stripe/stripe-php
```
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading):
```php
require_once('vendor/autoload.php');
```
## Manual Installation
If you do not wish to use Composer, you can download the [latest release](https://github.com/stripe/stripe-php/releases). Then, to use the bindings, include the `init.php` file.
```php
require_once('/path/to/stripe-php/init.php');
```
## Dependencies
The bindings require the following extensions in order to work properly:
- [`curl`](https://secure.php.net/manual/en/book.curl.php), although you can use your own non-cURL client if you prefer
- [`json`](https://secure.php.net/manual/en/book.json.php)
- [`mbstring`](https://secure.php.net/manual/en/book.mbstring.php) (Multibyte String)
If you use Composer, these dependencies should be handled automatically. If you install manually, you'll want to make sure that these extensions are available.
## Getting Started
Simple usage looks like:
```php
$stripe = new \Stripe\StripeClient('sk_test_BQokikJOvBiI2HlWgH4olfQ2');
$customer = $stripe->customers->create([
'description' => 'example customer',
'email' => 'email@example.com',
'payment_method' => 'pm_card_visa',
]);
echo $customer;
```
### Client/service patterns vs legacy patterns
You can continue to use the legacy integration patterns used prior to version [7.33.0](https://github.com/stripe/stripe-php/blob/master/CHANGELOG.md#7330---2020-05-14). Review the [migration guide](https://github.com/stripe/stripe-php/wiki/Migration-to-StripeClient-and-services-in-7.33.0) for the backwards-compatible client/services pattern changes.
## Documentation
See the [PHP API docs](https://stripe.com/docs/api/php#intro).
## Legacy Version Support
### PHP 5.4 & 5.5
If you are using PHP 5.4 or 5.5, you can download v6.21.1 ([zip](https://github.com/stripe/stripe-php/archive/v6.21.1.zip), [tar.gz](https://github.com/stripe/stripe-php/archive/v6.21.1.tar.gz)) from our [releases page](https://github.com/stripe/stripe-php/releases). This version will continue to work with new versions of the Stripe API for all common uses.
### PHP 5.3
If you are using PHP 5.3, you can download v5.9.2 ([zip](https://github.com/stripe/stripe-php/archive/v5.9.2.zip), [tar.gz](https://github.com/stripe/stripe-php/archive/v5.9.2.tar.gz)) from our [releases page](https://github.com/stripe/stripe-php/releases). This version will continue to work with new versions of the Stripe API for all common uses.
## Custom Request Timeouts
_NOTE:_ We do not recommend decreasing the timeout for non-read-only calls (e.g. charge creation), since even if you locally timeout, the request on Stripe's side can still complete. If you are decreasing timeouts on these calls, make sure to use [idempotency tokens](https://stripe.com/docs/api/php#idempotent_requests) to avoid executing the same transaction twice as a result of timeout retry logic.
To modify request timeouts (connect or total, in seconds) you'll need to tell the API client to use a CurlClient other than its default. You'll set the timeouts in that CurlClient.
```php
// set up your tweaked Curl client
$curl = new \Stripe\HttpClient\CurlClient();
$curl->setTimeout(10); // default is \Stripe\HttpClient\CurlClient::DEFAULT_TIMEOUT
$curl->setConnectTimeout(5); // default is \Stripe\HttpClient\CurlClient::DEFAULT_CONNECT_TIMEOUT
echo $curl->getTimeout(); // 10
echo $curl->getConnectTimeout(); // 5
// tell Stripe to use the tweaked client
\Stripe\ApiRequestor::setHttpClient($curl);
// use the Stripe API client as you normally would
```
## Custom cURL Options (e.g. proxies)
Need to set a proxy for your requests? Pass in the requisite `CURLOPT_*` array to the CurlClient constructor, using the same syntax as `curl_stopt_array()`. This will set the default cURL options for each HTTP request made by the SDK, though many more common options (e.g. timeouts; see above on how to set those) will be overridden by the client even if set here.
```php
// set up your tweaked Curl client
$curl = new \Stripe\HttpClient\CurlClient([CURLOPT_PROXY => 'proxy.local:80']);
// tell Stripe to use the tweaked client
\Stripe\ApiRequestor::setHttpClient($curl);
```
Alternately, a callable can be passed to the CurlClient constructor that returns the above array based on request inputs. See `testDefaultOptions()` in `tests/CurlClientTest.php` for an example of this behavior. Note that the callable is called at the beginning of every API request, before the request is sent.
### Configuring a Logger
The library does minimal logging, but it can be configured
with a [`PSR-3` compatible logger][psr3] so that messages
end up there instead of `error_log`:
```php
\Stripe\Stripe::setLogger($logger);
```
### Accessing response data
You can access the data from the last API response on any object via `getLastResponse()`.
```php
$customer = $stripe->customers->create([
'description' => 'example customer',
]);
echo $customer->getLastResponse()->headers['Request-Id'];
```
### SSL / TLS compatibility issues
Stripe's API now requires that [all connections use TLS 1.2](https://stripe.com/blog/upgrading-tls). Some systems (most notably some older CentOS and RHEL versions) are capable of using TLS 1.2 but will use TLS 1.0 or 1.1 by default. In this case, you'd get an `invalid_request_error` with the following error message: "Stripe no longer supports API requests made with TLS 1.0. Please initiate HTTPS connections with TLS 1.2 or later. You can learn more about this at [https://stripe.com/blog/upgrading-tls](https://stripe.com/blog/upgrading-tls).".
The recommended course of action is to [upgrade your cURL and OpenSSL packages](https://support.stripe.com/questions/how-do-i-upgrade-my-stripe-integration-from-tls-1-0-to-tls-1-2#php) so that TLS 1.2 is used by default, but if that is not possible, you might be able to solve the issue by setting the `CURLOPT_SSLVERSION` option to either `CURL_SSLVERSION_TLSv1` or `CURL_SSLVERSION_TLSv1_2`:
```php
$curl = new \Stripe\HttpClient\CurlClient([CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1]);
\Stripe\ApiRequestor::setHttpClient($curl);
```
### Per-request Configuration
For apps that need to use multiple keys during the lifetime of a process, like
one that uses [Stripe Connect][connect], it's also possible to set a
per-request key and/or account:
```php
$customers = $stripe->customers->all([],[
'api_key' => 'sk_test_...',
'stripe_account' => 'acct_...'
]);
$stripe->customers->retrieve('cus_123456789', [], [
'api_key' => 'sk_test_...',
'stripe_account' => 'acct_...'
]);
```
### Configuring CA Bundles
By default, the library will use its own internal bundle of known CA
certificates, but it's possible to configure your own:
```php
\Stripe\Stripe::setCABundlePath("path/to/ca/bun
没有合适的资源?快使用搜索试试~ 我知道了~
【WordPress插件】2022年最新版完整功能demo+插件2.7.zip
共335个文件
php:228个
png:28个
mo:14个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 116 浏览量
2022-04-05
17:00:08
上传
评论
收藏 2.14MB ZIP 举报
温馨提示
"【WordPress插件】2022年最新版完整功能demo+插件2.7 Stripe for Arforms 条纹变形" ---------- 泰森云每天更新发布最新WordPress主题、HTML主题、WordPress插件、shopify主题、opencart主题、PHP项目源码、安卓项目源码、ios项目源码,更有超10000个资源可供选择,如有需要请站内联系。
资源推荐
资源详情
资源评论
收起资源包目录
【WordPress插件】2022年最新版完整功能demo+插件2.7.zip (335个子文件)
ca-certificates.crt 219KB
style.css 19KB
arf_stripe.css 17KB
lightbox.css 3KB
prettify.css 815B
arf_stripe_front.css 118B
.php_cs.dist 1KB
phpstan.neon.dist 147B
.editorconfig 268B
slack-icons-Regular.eot 161KB
loading.gif 8KB
.gitignore 612B
index.html 34KB
jquery.js 242KB
jquery-3.3.1.min.js 85KB
arf_stripe.js 77KB
prettify.js 13KB
jquery.easing.js 8KB
lightbox.min.js 8KB
script.js 4KB
jquery.scrollTo.js 2KB
installed.json 2KB
composer.json 923B
LICENSE 1KB
LICENSE 1KB
Makefile 1007B
CHANGELOG.md 47KB
README.md 10KB
CODE_OF_CONDUCT.md 3KB
ARForms-Stripe-ru_RU.mo 14KB
ARForms-Stripe-ar.mo 12KB
ARForms-Stripe-ar_SA.mo 12KB
ARForms-Stripe-ja.mo 12KB
ARForms-Stripe-ja_JP.mo 12KB
ARForms-Stripe-fr_FR.mo 11KB
ARForms-Stripe-es_ES.mo 11KB
ARForms-Stripe-de_DE.mo 11KB
ARForms-Stripe-pt_PT.mo 11KB
ARForms-Stripe-ko_KR.mo 11KB
ARForms-Stripe-tr_TR.mo 11KB
ARForms-Stripe-nl_NL.mo 10KB
ARForms-Stripe-en_US.mo 10KB
ARForms-Stripe-zh_CN.mo 10KB
phpstan-baseline.neon 315B
arformsstripe.php 318KB
edit_3.0.php 75KB
list_orders_3.0.php 21KB
Invoice.php 19KB
StripeObject.php 18KB
CurlClient.php 17KB
list_forms_3.0.php 17KB
ApiRequestor.php 16KB
Account.php 16KB
Event.php 13KB
AccountService.php 13KB
ClassLoader.php 13KB
Customer.php 13KB
CustomerService.php 13KB
Charge.php 12KB
PaymentIntent.php 11KB
Subscription.php 11KB
init.php 11KB
InvoiceService.php 10KB
BaseStripeClient.php 9KB
ErrorObject.php 9KB
Source.php 8KB
Card.php 8KB
Collection.php 8KB
PaymentIntentService.php 7KB
Util.php 7KB
Stripe.php 7KB
SetupIntent.php 7KB
BankAccount.php 7KB
Payout.php 7KB
ObjectTypes.php 6KB
Session.php 6KB
TransferService.php 6KB
Transfer.php 6KB
SubscriptionItemService.php 6KB
CreditNote.php 6KB
BalanceTransaction.php 6KB
SubscriptionItem.php 5KB
CreditNoteService.php 5KB
Plan.php 5KB
Authorization.php 5KB
CustomerBalanceTransaction.php 5KB
CoreServiceFactory.php 5KB
RequestOptions.php 5KB
Order.php 5KB
Dispute.php 5KB
ApiErrorException.php 5KB
Person.php 5KB
OAuthService.php 5KB
ApplicationFeeService.php 5KB
Price.php 5KB
PayoutService.php 5KB
SubscriptionService.php 4KB
TaxId.php 4KB
SetupIntentService.php 4KB
WebhookSignature.php 4KB
共 335 条
- 1
- 2
- 3
- 4
资源评论
Lee达森
- 粉丝: 1566
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- Ollama安装文件,从官网下载
- 数据库编程中Cursor(游标)的概念、功能与应用场景解析
- 通过 OpenCV 加载视频文件 1.mp4,并使用 YOLOv8 模型进行姿态检测 它逐帧处理视频,检测人体关键点并绘制关键点及其连接 具体来说,代码首先加载 YOLOv8 模型并定义了关键点之间的
- 1ef69c3e3bfa6ebc829f03a871190d69.part01
- 9.6.0.3_1d9317597fbe653ff1d29cfaacfca6b8.apk
- lv_0_20250204142911.mp4
- NASA锂电池数据集(补).zip
- 面向对象课程设计基于Java+MySQL+JDBC+JavaSwing的图书信息管理系统源代码+数据库+课程设计报告
- DHCP服务租约和续约过程流程图
- 1ef69c3e3bfa6ebc829f03a871190d69.part02
- 1ef69c3e3bfa6ebc829f03a871190d69.part03
- 1ef69c3e3bfa6ebc829f03a871190d69.part04
- 基于Servlet+Jsp+MySQL的艺术作品展览管理系统源代码+数据库
- 1ef69c3e3bfa6ebc829f03a871190d69.part05
- 1ef69c3e3bfa6ebc829f03a871190d69.part06
- 财务收支数据年终报表-可视化图表.xlsx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功