其他分享
首页 > 其他分享> > [HITCON 2017]SSRFme 未完

[HITCON 2017]SSRFme 未完

作者:互联网

知识点:

1.pathinfi()函数会返回一个数组,关于文件路径的信息

  返回的数组元素如下:

代码例子:

<?php
print_r(pathinfo("/test1/test2/test.txt"));
?>

运行结果:

Array
(
    [dirname] => /test1/test2
    [basename] => test.txt
    [extension] => txt
    [filename] => test
)

 

2.basename()函数

代码例子:

<?php
$path = "/testweb/home.php";

echo basename($path) ."<br/>";

echo basename($path,".php");
?> 

运行结果:

home.php
home 

 

标签:test1,SSRFme,test2,basename,HITCON,test,home,2017,txt
来源: https://www.cnblogs.com/hackerone/p/16495958.html