Monday, December 8, 2014

Re: compare time arrays

convert them both to int before comparing should work.
or better yet, use DateTime class and its built in comparison methods.

mark

Am Samstag, 6. Dezember 2014 15:03:16 UTC+1 schrieb ajt:
Hi,
How do you compare time arrays in cakephp?
I tried to convert the time to a string without success as I get the same string over again or false.
There has to be an easy way which is hidden somewhere  in cakephp docs which I couldnt find?

  $rr2=($this->request->data['TutorRequest']['thu_end']); //time array
   $date_string = date('H:i:s', strtotime($rr));

eg both time arrays  but this doesnt work
  if ( $this->request->data['TutorRequest']['wed_start'] > $this->request->data['TutorRequest']['wed_end']

--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.

No comments: