Giter Club home page Giter Club logo

php-kasikornbank-class's Introduction

KasikornBank Class

Unoffical Kasikornbank API Class for PHP.

$kbank = new KasikornBank($username, $password, $cookie_path);

// Check if the session in the cookie is still valid. If not, then login again.
if (!$kbank->CheckSession()) {
	$kbank->Login();
}

// Get Today's Statement.
print_r($kbank->GetTodayStatement("XXX-X-XXXXX-X"));

Support Me?

If you like my project, consider donating me. Thank you! <3

[ Donate with Paypal or Donate with PromptPay ]

Paypal: [email protected]

PromptPay: 091-314-7533 (Thiranat Mahattanobon)

BTC Address: 3ASp8h7zo1exHJ2ZGNbEdu5kahY5XoNerN

ETH Address: 0x7d0068B8ba02F18e79abdFC5e33B94830A6c93fA

BCH Address: bitcoincash:qpa0dkuq3mwdy2ja0w4ujkjs29jrdy8qlugt5hjvef

Installation

It is pretty simple to utilize this class, you just need to require it.

require_once("KasikornBank.class.php");

Initialization

Simple initialization with Login Credentials. (Username and Password)

$cookie_path can be leave empty if you want to use temp file.

It is best to specify cookie file path for security reasons.

$kbank = new KasikornBank($username, $password, $cookie_path);
$kbank = new KasikornBank($username, $password); // Use default temp directory for temp file.
$kbank = new KasikornBank($username, $password, "./tmp/"); // Use ./tmp/ as temp directory for temp file.
$kbank = new KasikornBank($username, $password, "./cookie.txt"); // Use ./cookie.txt for cookie file.

Functions

You can set Login Credentials with this function, this function will NOT destroy current cookie session.

You can set Cookie Path with this function, it will use default temp directory to create cookie file by default.

You can change temp directory by set it with directory path, or you can set it with file name to set exact cookie file name.

You can login with this function, Login Credentials are required.

You can logout with this function, this function will destroy current cookie session.

You can check if the cookie session is still valid with this function.

This function is not guaranteed to be correct due of K-Online mechanism.

You can get your current account balance with this function.

If $account_number parameter is specified, the result of $account_number will be returned directly.

You can get your Account ID with this function.

If $account_number parameter is specified, the result of $account_number will be returned directly.

You can parse CSV Statement with this function. (There is no needed to use this function unless you know what it does.)

You can get Statement with this function, $start_date and $end_date parameters are needed to be "Y-m-d" format.

You can get Today's Statement with this function.


Useful Variables

These variables can be used if you need them.

  • (string) $this->response : Body Response from Curl execution with UTF-8 encoding.

  • (int) $this->http_code : HTTP Code from Curl execution.

  • (array) $this->_AccountID : You can take Account ID from this variable.

  • (array) $this->curl_options : Allow you to set extra Curl Options. (You can modify this variable.)


Note

  • CURLOPT_TIMEOUT can be set with $this->curl_options.
  • CURLOPT_SSL_VERIFYPEER can be turn off with $this->curl_options.
  • It is best to specify cookie file path for security reasons.
  • Make sure to disable access to cookie file from website visitors.
  • $this->request() will automatically convert encoding from Windows-874 to UTF-8.
  • "org.apache.struts.taglib.html.TOKEN" field will be automatically filled if available when POST.
  • Account Number or Account ID can be used as $account_number in Statement() and GetTodayStatement() functions.
  • GetStatement() function can not get today Statement, you need to use GetTodayStatement() function instead.
  • GetStatement() function will get Statement in the last 30 days (not included today) by default.
  • setCredentials() function will NOT destroy current cookie session when called.
  • If you set $retry_login parameter to true, the session will automatically re-login if the session become invalid.
  • If you set $retry_token parameter to true, the token will automatically re-obtain if the token is unavailable.

Licenses

KasikornBank Class is 100% free and open-source.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.

Copyright 2018-2019 Likecyber

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

php-kasikornbank-class's People

Contributors

likecyber avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.