Skip to content

Instantly share code, notes, and snippets.

View maythiwat's full-sized avatar
💤
Sleepy

Maythiwat Chomchuen maythiwat

💤
Sleepy
View GitHub Profile
@likecyber
likecyber / PromptPay_QR_Payload.class.php
Last active June 2, 2019 02:23
Build/Extract PromptPay QR Code Payload in PHP for convenience payment.
<?php
class PromptPay_QR_Payload {
public function Generate ($ewallet_id, $amount = null, $one_time = false) {
switch (strlen($ewallet_id)) {
case 10:
$ewallet_type = "01"; // Phone Number
$ewallet_id = "0066".substr($ewallet_id, 1, 9);
break;
case 13: