function isPalindrome($str) {
$str = strtolower(preg_replace('/[^a-zA-Z0-9]/', '', $str));
return $str === strrev($str);
}
// Example usage:
$string = "A man, a plan, a canal, Panama";
if (isPalindrome($string)) {
echo "$string is a palindrome.";
} else {
echo "$string is not a palindrome.";
}
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
Subscribe
Login
0 Comments
Oldest