Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/11da3a68c9dbe0f4469eec43900191a4 to your computer and use it in GitHub Desktop.
Save parzibyte/11da3a68c9dbe0f4469eec43900191a4 to your computer and use it in GitHub Desktop.
<?php
$cadena1 = "hola";
$cadena2 = "hola";
if (strcmp($cadena1, $cadena2) === 0) {
echo "Son iguales";
} else {
echo "No son iguales";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment