Skip to main content
🔮 Output PredictionPH PHP Hard⚡+35 XP

Strict Comparison

What is the result of this comparison?

PHP
var_dump(0 == "foo");  // PHP 7
var_dump(0 === "foo");

🔮 What is the output?