Question d’entretien chez KKBOX

1. what is call by reference in php? 2. difference between require and require_once 3. stack and queue, how this related to sorting function? 4. what's the difference between == and ===?

Réponse à la question d'entretien

Utilisateur anonyme

10 nov. 2016

Q4. "===" is identical true and "==" is equal for example $a === $b TRUE if $a is equal to $b, and they are of the same type. $a == $b TRUE if $a is equal to $b after type juggling.