Comparing strings with the equality operator : String « String « PHP
- PHP
- String
- String
Comparing strings with the equality operator
<?
if ("[email protected]" == '[email protected]') {
print "Welcome, Mr. President.";
}
?>
Related examples in the same category