Frage

While browsing the code of an open source PHP library I spotted this line:

$path = $path ?: $this->guessPackagePath();

This is not the ternary operator like it usually apprears. Would anyone explain what is going on in it?

War es hilfreich?

Lösung

It's a shortcut for

$path = $path ? $path : $this->guessPackagePath();

which comes from PHP 5.3

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top