00001 <?php 00002 /* 00003 * PageSectionBase.php 00004 * 00005 * Copyright (c)2010 ValueCommerce, Co. Ltd. 00006 */ 00007 00015 class PageSectionBase { 00016 00023 public function loadFile($fileName) { 00024 $text = ''; 00025 00026 $fp = fopen($fileName,'r'); 00027 00028 if ($fp == null) { 00029 return ''; 00030 } 00031 00032 while (!feof($fp)) { 00033 $buffer = fread($fp,1024); 00034 $text .= $buffer; 00035 } 00036 00037 fclose($fp); 00038 00039 return $text; 00040 } 00041 } 00042 00043 ?>