PHP 8.5.0 Alpha 1 available for testing

Voting

: zero minus zero?
(Example: nine)

The Note You're Voting On

federico at poisonfx dot com
14 years ago
Here the simplest way to delete files with mask

<?php
$mask
= "*.jpg"
array_map( "unlink", glob( $mask ) );
?>

<< Back to user notes page

To Top