is_logout
วิธีการใช้ฟังก์ชัน is_logout
is_logoutขั้นตอนการทำงาน
ตัวอย่างการใช้งาน
$result = $_PNA->is_logout(); if ($result === true) { echo "ออกจากระบบสำเร็จ"; } else { echo "เกิดข้อผิดพลาด: " . $result; }$access_token = "12345-67890-abcdef"; $result = $_PNA->is_logout($access_token); if ($result === true) { echo "ออกจากระบบสำเร็จ"; } else { echo "เกิดข้อผิดพลาด: " . $result; }
Last updated