Posted by Janwillem Borleffs on 10/02/25 11:29
Domestos wrote:
> okay I am pretty new to PHP can you please explain the following...
>
> what do the three '=' signs mean?
>
They provide strict comparison, read:
http://www.php.net/manual/en/language.operators.comparison.php
> what does the '?' mark do?
>
> and what is ' $url : http://$url ' doing?
>
These are ternary operators, read:
http://www.php.net/manual/en/language.expressions.php
JW
[Back to original message]
|