- Timestamp:
- 10/09/09 16:30:38 (13 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/tool/metroSite.php
r68 r117 176 176 $buffer_split = split(" ",$buffer); 177 177 if (trim($buffer_split[0]) != "nan"){ 178 $tab_in[$i] += trim($buffer_split[0]);178 $tab_in[$i] += str_replace(',','.',trim($buffer_split[0])); 179 179 } 180 180 if (trim($buffer_split[1]) != "nan"){ 181 $tab_out[$i] += trim($buffer_split[1]);181 $tab_out[$i] += str_replace(',','.',trim($buffer_split[0])); 182 182 } 183 183 $i++;