Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

คืนค่าสองค่าจากฟังก์ชันใน PHP


ไม่สามารถคืนค่าตัวแปร 2 ตัวได้อย่างชัดเจน แต่สามารถใส่ลงในโครงสร้างข้อมูลรายการ/อาร์เรย์แล้วส่งคืนได้

ตัวอย่าง

function factors( $n ) {
   // An empty array is declared
   $fact = array();
   // Loop through it
   for ( $i = 1; $i < $n; $i++) {
      // Check if i is the factor of
      // n, push into array
      if( $n % $i == 0 )
      array_push( $fact, $i );
   }
   // Return array
   return $fact;
}
// Declare a variable and initialize it
$num = 12;
// Function call
$nFactors = factors($num);
// Display the result
echo 'Factors of ' . $num . ' are: <br>';
foreach( $nFactors as $x ) {
   echo $x . "<br>";
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Factors of 12 are:
1
2
3
4
6