Answers for "unlink() in php"

PHP
0

php unlink

<?php 
  unlink('test.html');
?>
Posted by: Guest on April-09-2020
0

unlink() in php

<?php
// use unlink('filename.extension') to delete a file
// For example:

unlink('foo.php'); // will remove the file named foo.php   
  
// Happy coding, my homies! <3
?>
Posted by: Guest on February-23-2021

Browse Popular Code Answers by Language