Skip to content

Instantly share code, notes, and snippets.

@tuto1902
Created March 15, 2023 23:38
Show Gist options
  • Save tuto1902/fc10077c41ca8d2f699e00b641aa1627 to your computer and use it in GitHub Desktop.
Save tuto1902/fc10077c41ca8d2f699e00b641aa1627 to your computer and use it in GitHub Desktop.
Validate a Cron expression using regex
<?php
if (!preg_match('/^(\*|[0-9,\-\/\*]+)\s+(\*|[0-9,\-\/\*]+)\s+(\*|[0-9,\-\/\*]+)\s+(\*|[0-9,\-\/\*]+)\s+(\*|[0-9,\-\/\*]+)$/', $cronExpression)) {
// Invalid expression
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment