Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> Foreach nie działa
infoo1
post
Post #1





Grupa: Zarejestrowani
Postów: 117
Pomógł: 0
Dołączył: 12.11.2008

Ostrzeżenie: (0%)
-----


Mam taki kod:
  1. <?php
  2. $file = 'logs.txt';
  3.  $cnt  = file_get_contents($file);
  4.  $arr  = explode("\n",$cnt);
  5.  foreach ($arr as $value)
  6.  {
  7.    $value .= explode(" | ", $value);
  8.  
  9.  }echo '<br /><br /><br /><br /><br /><br /><br /><br /><br />';
  10.  print_r($arr);   echo '<br /><br /><br /><br /><br /><br /><br /><br /><br />';
  11.  print_r($arr[3]); echo '<br /><br /><br /><br /><br /><br /><br /><br /><br />';
  12.  print_r(explode(' | ','06.12.2008 | 18:02:16 | 192.168.1.100 | Mozilla/5.0 (Windows; U; Windows NT 6.0; pl; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4 | D:wwwaindex.php'));
  13. ?>


Wyświetla:
Cytat
Array ( [0] => 06.12.2008 | 18:02:16 | 192.168.1.100 | Mozilla/5.0 (Windows; U; Windows NT 6.0; pl; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4 | D:\www\a\index.php )

















Array ( [0] => 06.12.2008 [1] => 18:02:16 [2] => 192.168.1.100 [3] => Mozilla/5.0 (Windows; U; Windows NT 6.0; pl; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4 [4] => D:\www\a\index.php )
Czyli tego pierwszego (z foreach) nie dzieli na arraye przez " | ". Co zrobić, aby działało?
Go to the top of the page
+Quote Post
 
Start new topic
Odpowiedzi (1 - 1)
skowron-line
post
Post #2





Grupa: Zarejestrowani
Postów: 4 340
Pomógł: 542
Dołączył: 15.01.2006
Skąd: Olsztyn/Warszawa

Ostrzeżenie: (0%)
-----


  1. <?php
  2. $file = 'logs.txt';
  3. $cnt  = file_get_contents($file);
  4. $arr  = explode("\n",$cnt);
  5. $valueArray = array();
  6. foreach ($arr as $value)
  7. {
  8.   $valueArray[] = explode(" | ", $value);
  9. }
  10.  
  11. echo '<pre>';
  12. print_r( $valueArray );
  13. ?>

Takim sposobem powinieneś otrzymać tablice 2wymiarową.
Go to the top of the page
+Quote Post

Reply to this topicStart new topic
2 Użytkowników czyta ten temat (2 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Aktualny czas: 25.08.2025 - 01:55