Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Build a Simple PHP Application Working With Functions Introducing User-Defined Functions

Ellen Sun
Ellen Sun
1,605 Points

What is wrong with my code?

Where is my mistake? Why can't I pass?

palindromic_primes.php
<?php 

$sum = 0;
function mimic_array_sum($array) {
  foreach($array as $element) {
    $sum = $sum + $element;
    return $sum
  };

};


$palindromic_primes = array(11, 757, 16361);

?>

1 Answer

Colin Marshall
Colin Marshall
32,861 Points

You are returning the $sum variable inside of the foreach loop. Move the return statement outside of the loop, but keep it inside of the function. I would also move the $sum = 0 inside of the function, before the foreach loop because in the next step of the challenge you will have to create a variable called $sum outside of the of the function.