Answers for "strcmp() php"

PHP
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
0

strcmp php

strcmp("5", 5) => 0
Posted by: Guest on November-04-2020

Browse Popular Code Answers by Language