दो चर स्पष्ट रूप से वापस नहीं किए जा सकते हैं, उन्हें एक सूची/सरणी डेटा संरचना में रखा जा सकता है और लौटाया जा सकता है।
उदाहरण
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