fork download
  1. <?php
  2.  
  3. bassAckwards("www.google.com.");
  4. function bassAckwards($input)
  5. {
  6. $y=strlen($input);
  7. if($input[$y-1]=="."){
  8. $input=substr_replace($input,"",-1);
  9. }
  10. $x=explode(".",$input);
  11. $i=count($x);
  12. $x=implode(,$x[$i-1]);
  13. echo $x;
  14. //return $x;*/
  15. }
  16. ?>
Runtime error #stdin #stdout 0.02s 13664KB
stdin
Standard input is empty
stdout
Parse error: syntax error, unexpected ',', expecting ')' in /home/3wBgPw/prog.php on line 12