PHP函数返回数组

时间:2011-04-17 08:54:37

标签: php arrays function

我需要从函数返回多个值,因此我将它们添加到数组中并返回数组。

<?

function data(){

$a = "abc";
$b = "def";
$c = "ghi";

return array($a, $b, $c);
}


?>

如何通过调用上述函数来接收$a$b$c的值?

16 个答案:

答案 0 :(得分:93)

您可以向返回值添加数组键,然后使用这些键打印数组值,如下所示:

function data() {
    $out['a'] = "abc";
    $out['b'] = "def";
    $out['c'] = "ghi";
    return $out;
}

$data = data();
echo $data['a'];
echo $data['b'];
echo $data['c'];

答案 1 :(得分:50)

你可以这样做:

list($a, $b, $c) = data();

print "$a $b $c"; // "abc def ghi"

答案 2 :(得分:22)

function give_array(){

    $a = "abc";
    $b = "def";
    $c = "ghi";

    return compact('a','b','c');
}


$my_array = give_array();

http://php.net/manual/en/function.compact.php

答案 3 :(得分:14)

数据函数返回一个数组,因此您可以像访问数组元素一样访问函数的结果:

<?php
...
$result = data();

$a = $result[0];
$b = $result[1];
$c = $result[2];

或者你可以使用list()函数,就像@fredrik建议的那样,在一行中做同样的事情。

答案 4 :(得分:6)

$array  = data();

print_r($array);

答案 5 :(得分:5)

从PHP 5.4开始,您可以利用数组解除引用并执行以下操作:

<?

function data()
{
    $retr_arr["a"] = "abc";
    $retr_arr["b"] = "def";
    $retr_arr["c"] = "ghi";

    return $retr_arr;
}

$a = data()["a"];    //$a = "abc"
$b = data()["b"];    //$b = "def"
$c = data()["c"];    //$c = "ghi"
?>

答案 6 :(得分:4)

<?php
function demo($val,$val1){
    return $arr=array("value"=>$val,"value1"=>$val1);

}
$arr_rec=demo(25,30);
echo $arr_rec["value"];
echo $arr_rec["value1"];
?>

答案 7 :(得分:2)

这是类似功能的最佳方式

 function cart_stats($cart_id){

$sql = "select sum(price) sum_bids, count(*) total_bids from carts_bids where cart_id = '$cart_id'";
$rs = mysql_query($sql);
$row = mysql_fetch_object($rs);
$total_bids = $row->total_bids;
$sum_bids = $row->sum_bids;
$avarage = $sum_bids/$total_bids;

 $array["total_bids"] = "$total_bids";
 $array["avarage"] = " $avarage";

 return $array;
}  

你得到像这样的数组数据

$data = cart_stats($_GET['id']); 
<?=$data['total_bids']?>

答案 8 :(得分:2)

为了获取每个变量的值,您需要像对待数组一样对待函数:

function data() {
    $a = "abc";
    $b = "def";
    $c = "ghi";
    return array($a, $b, $c);
}

// Assign a variable to the array; 
// I selected $dataArray (could be any name).

$dataArray = data();
list($a, $b, $c) = $dataArray;
echo $a . " ". $b . " " . $c;

//if you just need 1 variable out of 3;
list(, $b, ) = $dataArray;
echo $b;

答案 9 :(得分:1)

这就是我在yii framewok中所做的:

public function servicesQuery($section){
        $data = Yii::app()->db->createCommand()
                ->select('*')
                ->from('services')
                ->where("section='$section'")
                ->queryAll();   
        return $data;
    }

然后在我的视图文件中:

      <?php $consultation = $this->servicesQuery("consultation"); ?> ?>
      <?php foreach($consultation as $consul): ?>
             <span class="text-1"><?php echo $consul['content']; ?></span>
       <?php endforeach;?>

我正在做什么抓住我选择的桌子的cretin部分。应该只适用于php减去db的“Yii”方式

答案 10 :(得分:1)

潜在的问题围绕着访问数组中的数据,正如Felix Kling在第一个响应中指出的那样。

在下面的代码中,我使用print和echo结构访问了数组的值。

function data()
{

    $a = "abc";
    $b = "def";
    $c = "ghi";

    $array = array($a, $b, $c);

    print_r($array);//outputs the key/value pair

    echo "<br>";

    echo $array[0].$array[1].$array[2];//outputs a concatenation of the values

}

data();

答案 11 :(得分:1)

import os
os.startfile('C:\\Path\\To\\file.docx')

答案 12 :(得分:0)

我认为最好的方法是创建一个全局var数组。然后通过传递它作为参考,在函数数据中做任何你想做的事情。无需返回任何东西。

$array = array("white", "black", "yellow");
echo $array[0]; //this echo white
data($array);

function data(&$passArray){ //<<notice &
    $passArray[0] = "orange"; 
}
echo $array[0]; //this now echo orange

答案 13 :(得分:0)

也许这就是您搜索的内容:

function data() {
    // your code
    return $array; 
}
$var = data(); 
foreach($var as $value) {
    echo $value; 
}

答案 14 :(得分:0)

我正在寻找一种比我正在使用的方法更简单的方法,但本文未对此进行解答。但是,我的方法有效,并且我不使用任何上述方法:

function MyFunction() {
  $lookyHere = array(
    'value1' => array('valuehere'),
    'entry2' => array('valuehere')
  );
  return $lookyHere;
}

我的功能没有问题。我循环读取数据以显示我的关联数据。我不知道为什么有人会建议上述方法。如果您希望将多个数组存储在一个文件中,但没有全部加载,请使用上面的我的function方法。否则,所有阵列都将加载到页面上,从而减慢您的网站速度。我想出了这段代码,将所有数组存储在一个文件中,并在需要时使用单个数组。

答案 15 :(得分:-1)

您的功能是:

function data(){

$a = "abc";
$b = "def";
$c = "ghi";

return array($a, $b, $c);
}

它返回一个数组,其中位置0是$ a,位置1是$ b,位置2是$ c。因此,您可以通过执行以下操作来访问$ a:

data()[0]

如果您执行$ myvar = data()[0]并打印$ myvar,则会得到“ abc”,这是在函数内部分配给$ a的值。