mysql - List all php cli scripts running in the background -
i running background tasks php cli using nohup php app.php &
.how can list scripts have sent background , how can forcibly close it?.
my script looks like
$dbh = new pdo('mysql:host=localhost;dbname=odesk', 'root', ''); $sth = $dbh->prepare("select id,msisdn new_r4 limit 44908,50000"); $sth->execute(); while($result = $sth->fetch(pdo::fetch_assoc)){
will script sent background stop once have processed rows?.
Comments
Post a Comment