Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的管理仪表板中创建一个报告,它给我所有过期的订阅列表。
请试试
$subscriptions = Recurly_SubscriptionList::getActive(); foreach ($subscriptions as $subscription) { print "Subscription: $subscription\n"; }
要返回的订阅状态:“活动”、“已取消”、“过期”、“未来”、“试用中”、“活动”或“过去到期”。一个订阅可能属于多个州。
您可以根据您的要求进行过滤。
资源