Skip to content

Instantly share code, notes, and snippets.

@paulrblakey
Created August 20, 2015 15:19
Show Gist options
  • Save paulrblakey/e01673b6e833d29fad02 to your computer and use it in GitHub Desktop.
Save paulrblakey/e01673b6e833d29fad02 to your computer and use it in GitHub Desktop.
<?php
return [
'minutes' => '/^(?:(?:[1-5]{0,1}[0-9]{1}(?:,[1-5]{0,1}[0-9]{1})*)|\*{1})$/',
'hours' => '/^(?:(?:[1-2]{0,1}[0-9]{1}(?:,[1-2]{0,1}[0-9]{1})*)|\*{1})$/',
'days' => '/^(?:[1-3]{0,1}[0-9](?:,[1-3]{0,1}[0-9])*|\*{1})$/',
'months' => '/^(?:(?:[1]{0,1}[0-9]{1}(?:,[1]{0,1}[0-9]{1})*)|\*{1})$/',
'weekdays' => '/^(?:[0-7](?:,[0-7]){0,6}|\*{1})$/',
'years' => '/^(?:(?:20[0-9]{2}(?:,20[0-9]{2})?)|\*{1})$/'
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment