File "extraction_nom_ficiher_ftp_raw.php"

Full Path: /home/analogde/www/Python/Monsta-FTP-master/extraction_nom_ficiher_ftp_raw.php
File size: 327 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
$chaine = '-rw----r--    1 3312       users          384260 Nov 25 20:02 xxx_2024-06-25 22_04_22_.jpg';

// Expression régulière pour capturer le nom du fichier
preg_match('/\S+$/', $chaine, $matches);

// Le nom du fichier est maintenant dans $matches[0]
$fichier = $matches[0];

echo "Nom du fichier : $fichier\n";
?>