Skip to content

Instantly share code, notes, and snippets.

@mrpatg
Created October 7, 2019 22:05
Show Gist options
  • Save mrpatg/03b6a50b3dba5014872a29453bbf1914 to your computer and use it in GitHub Desktop.
Save mrpatg/03b6a50b3dba5014872a29453bbf1914 to your computer and use it in GitHub Desktop.
palendrome
<?php
function isPalendrome($input){
trim( $input );
$reverse = strrev( $input );
if($input == $reverse){
return TRUE;
} else {
return FALSE;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment