PHP使用explode()读取文本文件以获取文本的特定部分

时间:2013-09-13 02:55:08

标签: php html css html5

所以我有两个文本文件,一个名为users.txt和schedule.txt。 schedule.txt如下所示:(注意上面的数字不在文件中,它们用作用户文件的引用)

   0           1     2

2013-04-11 ^ 12:00 | 4:00 | 14:00

    3          4     5     6

2013年7月21日^ 10:00 | 15:00 | 18:00 | 15:00

    7          8

2013-12-11 ^ 13:00 | 14:00

,users.txt文件如下所示:

John Smith ^ 2 | 4 | 6

星球大战^ 0 | 1 | 3 | 6

Luke Skywalker ^ 2 | 6 | 7 | 8

并且这些数字中的每一个都对应于另一个文件的索引...例如,John Smith在2013-04-11(从2开始)的时间是14:00,时间是15:00(来自4)等等......

我正在使用HTML为所有这些构建一个表格,但我无法提取时间值(从12:00开始)。

另外我对html和PHP非常新,所以请放轻松我...如果你有指针或任何其他有用的信息,请分享=)当我尝试添加编辑时,我肯定会需要它(对于使用单选按钮编辑时间并添加新用户。

非常感谢你的帮助/建议!

这是我的代码:

<?php
<!DOCTYPE html>
<html>
 <head>
  <title>Scheduler</title>
 </head>
 <body>
<h2>
<center>Select Your Meeting Times</center></h2>
    <table border="1"
    cellpadding="10">
    <tr>
    <th>User</th>
    <th>Action</th>
    <?php 
    //error_reporting(0);
    date_default_timezone_set('America/New_York');
    // used for displaying schedule times 
        $schedule= file('schedule.txt');
        // loop through array and output contents

        foreach($schedule as $s) {
            list($year, $month, $day) = explode('-', $s); 
            $ga = explode("|", $s);
            var_dump($year); 
            //echo $ga[5];


                            $year= intval($year, 10);
            $month= intval($month, 10);
            $day= intval($day, 10); 

            $h = mktime(0, 0, 0, $month, $day,$year);
            $d = date("F dS, Y", $h); //used to get the day of the week 
            $w= date("l", $h); // w now holds the day of the week.

            foreach($schedule as $t)
            {   
                // $split = preg_split('/| /', $t, -1, PREG_SPLIT_NO_EMPTY);



                list($time) = explode("|", $t); 
                list($time1) = explode(" ", $time); 
            //  var_dump($time1); 
            //  $output = trim($time1); 
            //  echo $test; 
                echo "<th>" . $w . "<br>" . $month . "/" . $day . "/" . $year . "</th>\n";


            }




        }


    ?>
    </tr>
    <tr>
     <?php
            $text = file('user.txt');
            // loop through array and output contents
            foreach($text as $user) {
                list($u) = explode('^', $user);
                echo "<tr>" . "<td>" . $u . "</td>" . "</tr>\n";
            }
        ?>
    </tr>
    <tr>
    <th><br></th>
    </tr>
    <tr>
    <th>Total</th>
    </tr>

    </table>


 </body>
</html>

3 个答案:

答案 0 :(得分:0)

请不要这样做。如果你想使用文本文件(对于一个没问题的小应用程序),那么使用合理的文本格式。取消所有这些自定义分隔符,只使用CSV格式(您可以使用fgetcsv()将行读入数组),或者更好,使用JSON格式和正确的标记(使用{{3}解压缩它,你抽出时间的麻烦就会消失。

你也不需要所有提取日期的malarkey - 查找json_decode()并让自己轻松生活。

答案 1 :(得分:0)

上面的人已经评论了更好的存储信息的方法,但是回答关于extract()的问题:

当你做

list($year, $month, $day) = explode('-', "2013-04-11^12:00|4:00|14:00"); 

"11^12:00|4:00|14:00"的价值为$day,而不是"11"。同样,当你做

$ga = explode("|", "2013-04-11^12:00|4:00|14:00");

您获得"2013-04-11^12:00"作为第一个值。从其余的代码来看,这可能不是你想要的。

答案 2 :(得分:0)

我为你写了一个小班。我没有包含任何错误检查。在^之后的第一次仍然有点困惑所以我在代码中添加了关于如何包含它的注释。另请注意,我没有对代码进行评论,希望您能理解它。

class UserTime{
    var $data=array();
    function __construct(){
        $lines = file('test.txt', FILE_IGNORE_NEW_LINES);
        foreach ($lines as $l){
            list($d,$t)=explode('^', $l);
            $this->data[]=$d;
            $t=explode('|', $t);
            // you have to remove the following line if you want to
            // include the first time after ^
            array_shift($t);
            $this->data = array_merge($this->data,$t);
        }
    }
    function getUser($user_string){
        list($user_name,$ix)=explode('^', $user_string);
        $userData['userName']=$user_name;
        $userData['time']=array();
        $idx = explode('|', $ix);
        for($i=0;$i<count($idx);$i++){
            if(isset($this->data[$idx[$i]])){
                $userData['time'][]=$this->data[$idx[$i]];
            }
        }
        return $userData;
    }
}

您可以使用以下课程

$users = new UserTime();
$udata = $users->getUser('John Smith^2|4|6');
print_r($udata);
$udata = $users->getUser('Star Wars^0|1|3|6');
print_r($udata);

输出如下。我想你可以在HTML中使用它。

Array
(
    [userName] => John Smith
    [time] => Array
        (
            [0] => 14:00
            [1] => 15:00
            [2] => 15:00
        )

)