Justtechjobs.com Find a programming school near you






Online Campus Both


php-developer-list | 2001122

[PHP-DEV] Bug #11023 Updated: exec does not wait for completion of cmd From: lobbin <email protected>
Date: 12/22/01

ID: 11023
Updated by: lobbin
Reported By: terry <email protected>
Old Status: Open
Status: Feedback
Bug Type: Program Execution
Operating System: slackware 7
PHP Version: 4.0.5
New Comment:

Does this happen on 4.1.0?

R.

Previous Comments:
------------------------------------------------------------------------

[2001-05-22 13:14:30] terry <email protected>

$cmd = "mv " . SITES_IMP . "site_* " . DB_UPDATES;
exec($cmd);

$arr = array();
$cmd = "ls " . DB_UPDATES . " site_* | wc -l";
exec($cmd,$arr);

i am of the impression that code proceeding an exec cmd will not execute until the exec is finished

in the above instance, the "ls" exec is executing before the "mv" exec has finished - when i know that 10 files have been moved, the "ls" exec returns 0 for a "wc -l", when running the code again it returns the number of files correctly - have placed sleeps between the commands and all works well

wondered if this is a bug in the exec cmd or my misunderstanding of its use

------------------------------------------------------------------------

Edit this bug report at http://bugs.php.net/?id=11023&edit=1

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>