How to get file extension in php
Release: 2016-07-25 09:03:28
Original
974 people have browsed it
-
-
$pic = 'abc.3434.342.12123.123.exe'; - $pics = explode('.' , $pic);
- < p>/*Get the total number of the array, and then take the last one*/
- echo $num = count($pics);
- echo '
'.$pics[$num-1];
- < ;p>/*Traverse the array and get the last element*/
- foreach ($pics as $value) //2
- {
- $a = $value;
- }
- echo $a.'
';
- /*Directly output the last element of the array*/
- echo end($pics);
- echo '
';
- /*Single out the last element of the array, pay attention to the difference with end()*/
- //echo array_pop($pics);
- /*First sort the array in reverse order by key value, and then single out the first element*/
- krsort($pics);
- echo array_shift($pics);
- echo '
' ;
/*The value corresponding to the extension index of the pathinfo() function return value*/
- $res = pathinfo($pic); //5
- var_dump($res);
- echo $ res['extension'].'
';
/*String interception, just take the last three digits*/
- echo substr($pic, -3, 3) ;
- ?>
-
Copy code
|
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31