php question...
php question...
Out of context: Reply #1
- Started
- Last post
- 4 Responses
- enobrev0
it's really just another way of doing things...
A way to make a conditional var in one line.
Personally, I don't use them much because they can be confusing to read.
It's the direct equivalent to
if ( conditional ) {
$var = 'whatever';
} else {
$var = "whatever else';
}