Skip to content

Instantly share code, notes, and snippets.

<?php
if (! defined( 'ABSPATH' )) {
exit;
}
class WC_Request_Shipping_Quote_Method extends WC_Shipping_Method {
public function __construct( $instance_id = 0 ) {
$this->id = 'wooviet_shipping';
$this->instance_id = absint( $instance_id );
@Longkt
Longkt / GetcurrencyVCB
Last active March 15, 2017 08:19
Tien-te
<?php
$file = file_get_contents('http://www.vietcombank.com.vn/ExchangeRates/');
//Lấy dữ liệu
$pattern = '#(?<=id="ctl00_Content_ExrateView">).*(?=</table>)#imsU';
preg_match($pattern, $file, $match);
//Tạo mảng
$pattern = '#<td class="code">(.*)</td><td class="code">(.*)</td><td>(.*)</td><td>(.*)</td><td>(.*)</td>.*</tr>#imsU';
@Longkt
Longkt / Read 3 number
Last active April 24, 2018 15:59
Đọc số 3 chữ số
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<style>
h1 {
color:red;
}
.content {