IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 40975


Ignore:
Timestamp:
Oct 28, 2019, 11:04:40 AM (7 years ago)
Author:
cclin33
Message:

ereg is failed in php7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ccl_branches/ipp-20190806/ippMonitor/raw/ipp.php

    r40842 r40975  
    351351  // loop over the lines in the file and generate lines in the menu
    352352  while ($line = fgetcsv ($file, 1024, "|")) {
    353     if (ereg ('^[:blank:]*#', $line[0])) continue;
     353    if (preg_match ("/#/", $line[0])) continue;
     354 // if (ereg ('^[:blank:]*#', $line[0])) continue;
    354355    if (count($line) < 2) continue;
    355356
Note: See TracChangeset for help on using the changeset viewer.