]> 4ch.mooo.com Git - bakadb.git/blob - bakaread.php
Merge branch 'master' of ssh://4ch.mooo.com:26/var/www/16/bakadb
[bakadb.git] / bakaread.php
1 <?php
2 /*
3  * Copyright (C) 2015 sparky4
4  *
5  * This file is part of baka database.
6  *
7  * baka database is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * baka database is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
19  * write to the Free Software Foundation, Inc., 51 Franklin Street,
20  * Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  */
23 error_reporting(E_ALL); // show all errors for debugging
24
25 $handle = @fopen("baka.db", "r");
26 if ($handle) {
27         while (($buffer = fgets($handle, 4096)) !== false) {
28                 $tok = strtok($buffer, "'");
29                 $outp = str_replace("'", "    ", $buffer);
30                 $pok = strtok("'");     //if done
31                 $ook = strtok("'");     //name
32                 $dok = strtok("'");     //date
33                 if($pok==0) echo "NOT Finished! ".$tok."  Name: ".$ook."  Take in Date: ".$dok."<br>\n";
34                 else "Finished! ".$outp."<br>\n";
35         }
36         if (!feof($handle)) {
37                 echo "Error: unexpected fgets() fail\n";
38         }
39         fclose($handle);
40 }
41 ?>