Heim > Artikel > Backend-Entwicklung > PHP-Beispiel – Analyse der Yii-Framework-Methode zum Erstellen geplanter Cronjob-Aufgaben
In diesem Artikel wird hauptsächlich die Methode zum Erstellen geplanter Cronjob-Aufgaben im Yii-Framework vorgestellt. Er analysiert die zugehörige Konfiguration, die Implementierungsschritte und Notizen der geplanten Yii-Aufgaben anhand spezifischer Beispiele
Das Beispiel in diesem Artikel beschreibt, wie man eine geplante Cronjob-Aufgabe im Yii-Framework erstellt. Teilen Sie es als Referenz mit allen. Die Details lauten wie folgt:
1. Umgebungskonfiguration hinzufügen
protected/config/console.php
<?php require_once('env.php'); // This is the configuration for yiic console application. // Any writable CConsoleApplication properties can be configured here. return array( 'basePath'=>dirname(FILE).DIRECTORY_SEPARATOR.'..', 'name'=>'CMS Console', // application components 'components'=>array( //Main DB connection 'db'=>array( 'connectionString'=>DB_CONNECTION, 'username'=>DB_USER, 'password'=>DB_PWD, 'enableParamLogging'=>true, ), 'log'=>array( 'class'=>'CLogRouter', 'routes'=>array( array( 'class'=>'CFileLogRoute', 'levels'=>'error, warning', ), ), ), ), );
2. Fügen Sie ein Modul zur Ausführung geplanter Aufgaben hinzu
protected/commands/crons.php
<?php defined('YII_DEBUG') or define('YII_DEBUG',true); // including Yii require_once('/../framework/yii.php'); // we'll use a separate config file $configFile='/config/console.php'; // creating and running console application Yii::createConsoleApplication($configFile)->run();
Fügen Sie eine bestimmte geplante Aufgabe hinzu
Eine geplante Aufgabe ist normalerweise ein Befehlszeilenprogramm, abgeleitet von der CConsoleCommand-Klasse, wie z. B.
protected/commands/TestCommand.php
class TestCommand extends CConsoleCommand { public function run($args) { //todo } }
4. Erstellen Sie einen Cronjob
30 0 * * * www php /path/to/crons.php Test >>/path/to/logs/test.log
5. Übergeben Sie die Parameter zur Ausführung ($params) in der geplanten Aufgabe
30 0 * * * www php /path/to/crons.php Test param1 param2 ...
Das obige ist der detaillierte Inhalt vonPHP-Beispiel – Analyse der Yii-Framework-Methode zum Erstellen geplanter Cronjob-Aufgaben. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!