PHP·98 questionsWhat is the difference between == and ===?SaveUpdated: 2026-08-31Answer•== is loose comparison with type juggling.•'5' == 5 returns true.•=== is strict comparison of value AND type.•'5' === 5 returns false.•It is recommended to use ===.Ask AI to clarifyWas this answer helpful?HelpfulNot helpfulSuggest an improvement