「PHP入門」pathinfo()でファイルパスに関する情報を返す
//ファイルパス
$filePath = “/data/backup/cft/12345.csv";
//パスインフォの取得
$cftpath = pathinfo($full_path);
//配列参照
print_r($cftpath);
Coding Changes the World
//ファイルパス
$filePath = “/data/backup/cft/12345.csv";
//パスインフォの取得
$cftpath = pathinfo($full_path);
//配列参照
print_r($cftpath);