CronExpression::getExpression
Get all or part of the CRON expression
Method of the class: CronExpression{}
No Hooks.
Returns
String|null. Returns the CRON expression, a part of the
CRON expression, or NULL if the part was specified but not found
Usage
$CronExpression = new CronExpression(); $CronExpression->getExpression( $part );
- $part(string)
- (optional) Specify the part to retrieve or NULL to
php get the full cron schedule string..
Default: null
CronExpression::getExpression() CronExpression::getExpression code WC 10.4.3
public function getExpression($part = null)
{
if (null === $part) {
return implode(' ', $this->cronParts);
} elseif (array_key_exists($part, $this->cronParts)) {
return $this->cronParts[$part];
}
return null;
}