이 문제가 발생했습니다. opendir
을이 디렉토리 배열과 함께 사용하고 싶습니다. 가능합니까? 고정 URL로 readdir
으로 파일을 읽을 수 있습니다.PHP opendir 및 배열 디렉토리가있는 readdir
$results = mysqli_query($connecDB,"SELECT * FROM brands WHERE 1 IN (php, ruby, java) ORDER BY id ASC");
//select all records with value "1" in different columns "php ruby java".
// The value "1" indicates a folder created named $id in php, ruby and/or java folder
$resultsArray = array();
while($row = mysqli_fetch_assoc($results)){
if($row['php'] == 1) {
$resultsArray['php'][] = $row['id'];
}
if($row['java'] == 1) {
$resultsArray['java'][] = $row['id'];
}
if($row['ruby'] == 1) {
$resultsArray['ruby'][] = $row['id'];
}
}
foreach($resultsArray as $language => $array){
echo "url/" . $language . "/" . $row['id'] . "<br>";
}
그리고 출력 예 :하지만
배열 생성 중 ... 여러 디렉토리와 함께 무엇을 잘 모릅니다
URL/PHP는/1/
URL/자바/1/
URL/PHP/2/
URL/루비/2/
URL/자바/2/
URL/PHP/3/
URL/PHP/4/
URL/루비/4/
등
은 대단히 감사합니다
나는 실제로 이해하지 못하고, 무엇이 잘못되고 무엇을 달성하기를 원합니까? – JTC
@JTC 생성 된 모든 디렉토리를 읽는 'opendir'의 위치를 모른다. 나는 'foreach'에서 노력하고 있지만 나던 일은하지 않습니다. 감사합니다 – santyas