我正在尝试使用这个项目。我下载了文件。得到项目的文件夹,解压缩,然后将“src”目录下的“Cron”目录复制到另一个位置,我在其中创建了列出的 php 文件来测试项目。“Cron”文件夹包含以下文件:
AbstractField.php
CronExpression.php //Main class
DayOfMonthField.php
DayOfWeekField.php
FieldFactory.php
FieldInterface.php
HoursField.php
MinutesField.php
MonthField.php
YearField.php
我从项目的主页复制了示例 php 文件来测试项目,这里是文件(即 cron.php):
<?php
//require_once '/vendor/autoload.php'; //This line isn't valid because the mentioned path doesn't exist anymore. So I commented it but I can't find how to replace it.
// Works with predefined scheduling definitions
$cron = Cron\CronExpression::factory('@daily');
$cron->isDue();
echo $cron->getNextRunDate()->format('Y-m-d H:i:s');
echo $cron->getPreviousRunDate()->format('Y-m-d H:i:s');
// Works with complex expressions
$cron = Cron\CronExpression::factory('3-59/15 2,6-12 */15 1 2-5');
echo $cron->getNextRunDate()->format('Y-m-d H:i:s');
// Calculate a run date two iterations into the future
$cron = Cron\CronExpression::factory('@daily');
echo $cron->getNextRunDate(null, 2)->format('Y-m-d H:i:s');
// Calculate a run date relative to a specific time
$cron = Cron\CronExpression::factory('@monthly');
echo $cron->getNextRunDate('2010-01-12 00:00:00')->format('Y-m-d H:i:s');
?>
所以我的文件“cron.php”与包含前面列出的项目文件的目录“Cron”存在于同一文件夹中。当我执行我的 php 文件php cron.php
时,我收到以下错误:
[29-Apr-2013 15:17:23 UTC] PHP Fatal error: Class 'Cron\CronExpression' not found in E:\PHP\Libraries\Cron\cron.php on line 3
我在这里做错了什么?!