Hello, im taking the course in the title, very good so far, i have a question, nothing with oop, but never seen a sentence like this before:
strlen($spass) < self::MINCHAR ? false : true
I understand that im getting the string length of the $spass variable, then i compare if $spass is less than (8 chars, in this case the value of the constant MINCHAR), then never seen this part ? false : true. I understand that it returns true or false, but this can be use in any comparisson? where i can find the documentation about the uses of the ? false : true, ? can i put true before false?
Thanks