Support

Account

Home Forums General Issues Time split in to variables? Reply To: Time split in to variables?

  • See:
    https://www.php.net/manual/en/function.list.php
    https://www.php.net/manual/en/function.explode.php

    
    // create and set a value for hour and minute from H:i
    list($hour, $minute) = explode(':', $value);