1.pathinfo(path,options)
以数组的形式返回文件路径的信息
<?php
print_r(pathinfo("/testweb/test.txt"));
?>
Array
(
[dirname] => /testweb
[basename] => test.txt
[extension] => txt
)
2.basename(path,suffix)
返回路径中的文件名部分
<?php
$path = "/testweb/home.php";
//显示带有文件扩展名的文件名
echo basename($path);
//显示不带有文件扩展名的文件名
echo basename($path,".php");
?>
home.php
home
3.array_combine(keys,values);
通过合并两个数组来创建一个新数组,其中的一个数组元素为键名,另一个数组元素为键值
<?php
$fname=array("Bill","Steve","Mark");
$age=array("60","56","31");
$c=array_combine($fname,$age);
print_r($c);
?>
Array ( [Bill] => 60 [Steve] => 56 [Mark] => 31 )