PHP Task 4 Lesson 29 Exercise Text Processing and Regular Expression
Задача 3:
1.Extract File
Write a program that reads the path to a file and subtracts the file name and its extension.
===========================================================================
$consoleInput=explode("\\",readline()); $file=explode(".",end($consoleInput)); echo "File name: ".$file[0].PHP_EOL; echo "File extension: " . $file[1] . PHP_EOL;
==========================================================================
Дава ми 80-от 100 къде бъркам ?
C:\Internal\training-internal\Template.pptx |
File name: Template File extension: pptx |
Колегата е прав, за разшрение се взима само последната част след сплит по точка, останалото остава в името на файла.