Skip to content

Instantly share code, notes, and snippets.

@bishawjit-das
Created October 27, 2019 05:53
Show Gist options
  • Select an option

  • Save bishawjit-das/278925f2ffc5160a4ae6127719452114 to your computer and use it in GitHub Desktop.

Select an option

Save bishawjit-das/278925f2ffc5160a4ae6127719452114 to your computer and use it in GitHub Desktop.
php to solr date convert
$to = date('Y-m-d H:i:s');
$from = date('Y-m-d H:i:s', strtotime('-24 hours', strtotime($to)));
$from = gmdate('Y-m-d\TH:i:s\Z', strtotime($from));
$to = gmdate('Y-m-d\TH:i:s\Z', strtotime($to));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment