私は最近追加されたフォルダ(日付で名前が付けられています)を見つけなければなりません。問題は、日付を持つすべてのフォルダでdirを取得するときに、配列に日付フォルダだけでなくフォルダのフルパスが含まれていることです。これは私のコード最新の日付のフォルダを取得する
$dirs = array_filter(glob(__DIR__ . '/../../../var/Html/*'), 'is_dir');
var_dump($dirs);
$mostRecent= 0;
foreach($dirs as $date){
$curDate = strtotime($date);
if ($curDate > $mostRecent) {
$mostRecent = $curDate;
}
}
var_dump($mostRecent);
die();
であり、これは私は私は信じている
D:\wamp64\www\mypage\public_html\rest>php index.php cli/pars parseFiles
array(2) {
[0]=>
string(111) "D:\wamp64\www\mypage\public_html\rest\application\controllers\cli/../../../var/Html/2017-07-15"
[1]=>
string(111) "D:\wamp64\www\mypage\public_html\rest\application\controllers\cli/../../../var/Html/2017-07-16"
}
int(0)
を得る出力され
...マイルは、あなたと私のコードの例を与えるとプットをサンプリングしてみよう問題は、var $ dirsには、自分のディレクトリのフルパスが含まれていて、代わりに日付フォルダ名だけが含まれているためです。どうすれば私の問題を克服できますか?ありがとうございます
:
出力:
あなたのケースでは、それは次のようになります。 – jeroen
これらの結果を配列に入れると、配列を簡単に並べ替えることができます。 – jeroen