|
|
|
อยากทราบว่าอ่านข้อมูลในไฟล์ .txt ตัดมาแค่ส่วนที่ต้องการมาแสดง |
|
|
|
|
|
|
|
Code (PHP)
// $str คือ อาเรย์ของข้อมูลที่อ่านมาจากไฟล์
foreach($str as $val )
{
echo getVal($val)."<br>";
}
function getVal($str){
$pattern = '@^(?:Telephone :)?([^/]+)@i';
preg_match($pattern,$str, $matches);
if($matches[0] == $matches[1]){
$pattern = '@^(?:Name :)?([^/]+)@i';
preg_match($pattern,$str, $matches);
if($matches[0] == $matches[1]){
$pattern = '@^(?:email :)?([^/]+)@i';
preg_match($pattern,$str, $matches);
if($matches[0] == $matches[1]){
return "";
}else
return $matches[1];
}else
return $matches[1];
}else
return $matches[1];
}
|
|
|
|
|
Date :
2010-04-02 15:02:09 |
By :
lozomac |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|