Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to create this script that would delete the filename from a folder whose name is contained inside the $id variable. NOt sure why its not working:

Code:

 unlink('/userstash/$id' . $fn);
share|improve this question
2  
What do $id and $fn contain exactly? What does a test output show you? (There might be a slash missing) – Pekka 웃 Aug 5 '11 at 13:21
2  
make sure you validate and sanitize your variables. nothing worse than $fn = '/../../etc/passwd' – knittl Aug 5 '11 at 13:22
@knittl yeah don't worry. have that being checked. – KPO Aug 5 '11 at 13:36
@pekka you were right i was missing the "/" – KPO Aug 5 '11 at 13:36

4 Answers

up vote 2 down vote accepted

use this one

unlink("/userstash/$id$fn");

single quotes don't parse variables inside

share|improve this answer
Is there a reason you have not suggested to put $fn inside the string as well then? – hakre Aug 5 '11 at 13:44
hakre: I have no idea, I was posting it in hurry – genesis Aug 5 '11 at 13:45

Use double quotes instead of single quotes, in other words:

unlink("/userstash/$id" . $fn);
share|improve this answer

Take care that you properly build the string for your path and then add some error checking so your script informs you when something goes wrong and tells you about the filename:

$path = '/userstash/' . $id . $fn: 
$r = unlink($path);
if ($r === false)
{
    throw new Exception(sprintf('Unable to delete file "%s".', $path));
}
share|improve this answer
1  
+1 for debugging / error reporting – Pekka 웃 Aug 5 '11 at 13:45

You should use the double qoutes:

unlink("/userstash/$id" . $fn);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.