<?php
function makeDirName($name) {
$dirs = glob($name . '*', GLOB_ONLYDIR);
if (!count($dirs)) return $name;
return $name . '_' . (ltrim(strstr(max($dirs), '_'), '_') + 1);
}
echo makeDirName('./images/Urlaub10');
<?php
function makeDirName($name) {
$dirs = glob($name . '*', GLOB_ONLYDIR);
if (!count($dirs)) return $name;
return $name . '_' . (ltrim(strstr(max($dirs), '_'), '_') + 1);
}
echo makeDirName('./images/Urlaub10');