Answers for "php equals string"

PHP
2

php compare string

<?php
$var1 = "Hello";
$var2 = "hello";
if (strcmp($var1, $var2) !== 0) {
    echo '$var1 is not equal to $var2 in a case sensitive string comparison';
}
?>
Posted by: Guest on December-02-2020
1

php if variable equals

<?php
	// if given an variable to check or validate
  	$text = "issac";
	if($text == "issac"){
    	echo "Cool";
    }else{
    	echo "Huston, We've got a problem";
    }

// result : Cool

//Symbol Guide: 
// == ->> Equals to
// === ->> Strictly Equals to
// != ->> Not Equals to
// !== ->> Strictly not equals to 
// Hope this helps Godspeed.
?>
Posted by: Guest on June-20-2021
3

string compare in php

//In php to compare two string we can use strcmp() function
Syntax
strcmp(string1,string2);

//If both string is same then it will return 0
<?php
echo strcmp("Hello world!","Hello world!");
?>
Posted by: Guest on June-04-2020

Browse Popular Code Answers by Language