By admin, 26 April, 2020

ตัวอย่าง

.center {
  height: 200px;
  position: relative;
  border: 3px solid green;
}

.center p {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

 

By admin, 20 June, 2019

ตรวจสอบเวลาบนเครื่อง  server เป็น Time zone ไหน โดยใชัคำสั่งนี้

timedatectl

timedatectl

เมื่อตรวจสอบเวลาแล้วว่าเป็น timezone เราจะเปลี่ยนให้เป็น  timezone ประเทศไทย โดยใช้คำสั่งดังนี้

By admin, 24 July, 2018

Drupal 7
เราใช้ ฟังชั่น taxonomy_term_load()

สำหรับ tid ตัวเดียว

<?php

$term = taxonomy_term_load($tid);
$name = $term->name;

?>

สำหรับ หรับ tid  หลายตัว

<?php

$tids = array(1, 2, 3);
$terms = taxonomy_term_load_multiple($tids);

foreach ($terms as $term) {
  $name = $term->name;
}

?>