Pardon me if this has been asked already. I am a beginner trying to integrate stripe payment gateway in my PHP sample project. I installed stripe API using composer from
I tried solution described in this stack overflow post
but no positive results appeared. Thanks in advance.
CodePudding user response:
try like this:
require_once('/stripe-php-master/init.php');
\Stripe\Stripe::setApiKey('stripe_sectet_key');
$customer = \Stripe\Customer::create([
'description' => 'example customer',
'email' => '[email protected]',
'payment_method' => 'pm_card_visa',
]);
echo $customer;