Changeset 17
- Timestamp:
- Sep 5, 2019, 6:04:03 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r16 r17 262 262 $Items = $this->QueryRunnersAll(); 263 263 //print_r($Items); 264 $Hash = md5(serialize($Items)); 264 $ItemsWithoutProgress = array(); 265 foreach ($Items as $Item) 266 { 267 unset($Item['Progress']); 268 $ItemsWithoutProgress[] = $Item; 269 } 270 //print_r($Items); 271 $Hash = md5(serialize($ItemsWithoutProgress)); 265 272 266 273 $DbResult = $this->Database->query('SELECT * FROM Import ORDER BY Time DESC LIMIT 1'); … … 277 284 'ItemCount' => count($Items) 278 285 )); 286 file_put_contents('/home/teribear/www/import/'.$Hash.'.txt', print_r($Items, true)); 279 287 } 280 288 }
Note:
See TracChangeset
for help on using the changeset viewer.