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 trialGurveer Singh
11,353 Pointsplease help to read this file
For each of the files whose name contained "fun", convert the contents of the file to lowercase and display the lowercase version after each H3 title.
<?php
//add code here
$files = array();
$files = scandir('example');
foreach ($files as $file) {
if (strpos($file, "fun") !== false) {
echo '<h3>' . $file . '</h3>';
$readkrr = file_get_contents($file);
echo $readkrr;
}
}
1 Answer
KRIS NIKOLAISEN
54,971 PointsThe error you receive is : Bummer: Make sure you are reading the contents of the file from the "example" directory.
This directory needs to be included with the file name when you read the contents since you aren't currently in the 'example' directory. When I tried this originally I used chdir
and that hung the challenge repeatedly. So instead you can just specify the directory with the file name:
$readkrr = file_get_contents('example/' . $file);
Then don't forget to convert the case of the contents to lower. This is done in the previous video @ 1:20 if you need a refresher.