나는 고객의 카드를 저장하기 위해 스트라이프를 사용하는 군중 기금 마련 PHP 스크립트 작업을하고 있습니다. 임계 값이 충족되면 모든 후원자의 청구 카드를 보냈습니다. Stripe의 api 최대 실행 시간이 120 초에 도달하면 PHP 스크립트에서 루프를 사용하는 것이 중지됩니다.스트라이프에서 벌크 카드를 청구 할 수있는 방법
<?php
include('system/stripelib/lib/Stripe.php');
Stripe::setApiKey(API);
//getting saved stripe Customer_id
$result= $this->db->query("select cus_id,amount from pledge where 1");
if($result->num_rows)
{
foreach($result->rows as $cus)
{
Stripe_Charge::create(array(
"amount" => $cus['amount']
"currency" => "usd",
"customer" => $cus['cus_id'],
"description" => "Charge for campaign"
));
}
}
?>
스트라이프가 아니라 PHP의 실행 한계 일 것입니다. – ceejayoz