Jump to content

Variable In Unlink() Path


stevew

Recommended Posts

Using xampp environment. I am trying to delete a file with the unlink function using a variable in the path.

 

When I try to use $var I get the permissions error:

 

<?php
$var='1.jpg';
$tmpfile ='images/'?><?php echo $var; unlink($tmpfile);
?>

 

1.jpg

Warning: unlink(images/): Permission denied in C:\xampp\htdocs\xampp\..... on line 3

 

 

However this way works fine:

 

<?php
$tmpfile ='images/2.jpg'; unlink($tmpfile);
?>

 

2.jpg is deleted successfully from the 'images' folder.

 

Any help appreciated thx.

Link to comment
https://forums.phpfreaks.com/topic/268723-variable-in-unlink-path/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.