// Heading $_['heading_title'] = 'ประเภทสินค้า'; // Text $_['text_success'] = 'สำเร็จ: คุณทำการแก้ไขประเภทสินค้า!'; $_['text_default'] = 'ค่าเริ่มต้น'; $_['text_image_manager'] = 'จัดการรูปภาพ'; $_['text_browse'] = 'เรียกดูไฟล์'; $_['text_clear'] = 'ล้างรูป'; // Column $_['column_name'] = 'ชื่อประเภท'; $_['column_sort_order'] = 'การเรียงลำดับ'; $_['column_action'] = 'การกระทำ';
<?php echo $heading_title?> <?php echo $text_success?>
<?php define("CONSTANT", "Hello world."); echo CONSTANT; // outputs "Hello world." echo Constant; // outputs "Constant" and issues a notice. define("GREETING", "Hello you.", true); echo GREETING; // outputs "Hello you." echo Greeting; // outputs "Hello you." ?>
$_['hello'] = "world"; $_['thaicreate'] = "second to none"; extract($_); echo "hello ".$hello; echo "<br />"; echo "thaicreate ".$thaicreate;
foreach ($_ as $key=>$val) $$key = $val;
public function load($filename) { $file = DIR_LANGUAGE . $this->directory . '/' . $filename . '.php'; if (file_exists($file)) { $_ = array(); require($file); $this->data = array_merge($this->data, $_); return $this->data; } $file = DIR_LANGUAGE . $this->default . '/' . $filename . '.php'; if (file_exists($file)) { $_ = array(); require($file); $this->data = array_merge($this->data, $_); return $this->data; } else { trigger_error('Error: Could not load language ' . $filename . '!'); exit(); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง