اذهب إلى المحتوى

السؤال

نشر

كيف ممكن اطبع المصفوفة التالية

class_array = array (
array ("CS122", "Programming Concepts 1","Basic concepts of the PHP language.","B123", "Dr. Abraham Excel", 50), array ("CS123", "Programming Concepts 2","Advanced concepts of the PHP language.", "B123", "Dr. Abraham Excel", 50)
);

لكي تعطيني النتيجة التاليةthe result must be as the following pattern :

item #1:
 -CS122
-Programming Concepts 1
-Basic concepts of the PHP language
-B123
-Dr. Abraham Excel
-50

item #2:

-CS123
-Programming Concepts 2
-Basic concepts of the PHP language.
-B123
-Dr. Abraham Excel
-50

 

Recommended Posts

  • 0
نشر

بشكل عام لدينا مصفوفة مصفوفات، ولكل مصفوفة للانتقال على عناصرها يتطلب ذلك حلقة، 

و كما نرى أنه لدينا مصفوفات متداخلة فهذا يعني أننا بحاجة حلقات متداخلة لنتماشى مع بنية المعطيات.

<?php

$class_array = ..

for ($i=0; $i<count($ ??  ); $i++ ) {
   echo ..
   
   $sub_array = $class_array[ ?? ]
                      
   for ($j=0; $j<count($ ??  ); $j++) {
		
		echo ???

	}
                      
}

 

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...