1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php /** * Based on runJobs.php * * Report number of jobs currently waiting in master database. * * @file * @ingroup Maintenance * @author Tim Starling * @author Ashar Voultoiz */ require_once( 'commandLine.inc' ); $dbw = wfGetDB( DB_MASTER ); $count = $dbw->selectField( 'job', 'count(*)', '', 'runJobs.php' ); print $count."\n";