note 98010 deleted from function.ignore-user-abort by danbrown
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Note Submitter: Marco ---- Anonymous' code: if (file_exists(dirname(__FILE__)."stop.txt")) break; will not break the loop even if the file "stop.txt" exists, as there is a slash missing. The correct code should be: if (file_exists(dirname(__FILE__)."/stop.txt")) break;