Jacek Kowalski
2012-06-23 8bd4d9f5065a5b94dc83f0ed6859ed0d93c75d84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
$bash = fopen('text.txt', 'r');
$cytaty = array();
 
while(!feof($bash)) {
    $cytat = trim(fgets($bash));
    if(empty($cytat)) continue;
    var_dump($cytat);
    $cytaty[(int)substr($cytat, 1)] = ftell($bash);
    while(!feof($bash) && trim(fgets($bash))!='%');
}
 
fclose($bash);
 
ksort($cytaty);
var_dump(count($cytaty));
 
file_put_contents('index.txt', serialize($cytaty));
?>