Skip to content

Instantly share code, notes, and snippets.

@rakeybulhasan
Created May 8, 2013 08:17
Show Gist options
  • Save rakeybulhasan/5539007 to your computer and use it in GitHub Desktop.
Save rakeybulhasan/5539007 to your computer and use it in GitHub Desktop.
<?php
$input= file_get_contents('index.txt');
$array= explode("\n",$input);
foreach($array as $std){
if(strrev($std)== $std){
echo $std. ' -- is regular palindrome'.'<br>';
}else{
echo $std. ' -- is not regular palindrome'.'<br>';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment