PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function isPalindrome($x) { $a = str_split((string) $x); $ar = array_reverse($a); $y = implode($ar); var_dump($x, $a, $ar, $y); return (string)$x === $y; } echo isPalindrome(-121);
Show:  
Copy Clear