PHP从Url中获取文件扩展名

已邀请:
匿名用户

匿名用户

赞同来自:

1、同时使用explode()和end()函数获取:
<?php
echo end(explode(".", 'http://aiezu.com/index.html'));
2、同时使用strrchr()和substr()函数获取:
<?php
echo substr(strrchr('http://aiezu.com/index.html', '.'), 1);
3、同时使用strrpos()和substr()函数获取:
<?php
$url = 'http://aiezu.com/index.html';
echo substr($url, strrpos($url, '.')+1);
4、使用pathinfo()函数:
<?php
echo pathinfo('/home/aiezu.com/index.html', PATHINFO_EXTENSION);

要回复问题请先登录注册