我需要从函数返回多个值,因此我将它们添加到数组中并返回数组。
<?
function data(){
$a = "abc";
$b = "def";
$c = "ghi";
return array($a, $b, $c);
}
?>
如何通过调用上述函数来接收
$a
、$b
、$c
的值?
您可以将数组键添加到返回值中,然后使用这些键打印数组值,如下所示:
function data() {
$out['a'] = "abc";
$out['b'] = "def";
$out['c'] = "ghi";
return $out;
}
$data = data();
echo $data['a'];
echo $data['b'];
echo $data['c'];
你可以这样做:
list($a, $b, $c) = data();
print "$a $b $c"; // "abc def ghi"
function give_array(){
$a = "abc";
$b = "def";
$c = "ghi";
return compact('a','b','c');
}
$my_array = give_array();
数据函数返回一个数组,因此您可以像通常访问数组元素一样访问该函数的结果:
<?php
...
$result = data();
$a = $result[0];
$b = $result[1];
$c = $result[2];
或者您可以使用
list()
函数,正如 @fredrik 建议的那样,在一行中执行相同的操作。
从 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"
?>
<?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"];
?>
$array = data();
print_r($array);
也许这就是您所寻找的:
function data() {
// your code
return $array;
}
$var = data();
foreach($var as $value) {
echo $value;
}
为了获取每个变量的值,您需要像对待数组一样对待函数:
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;
//Important not to forget the commas in the list(, $b,).
自 PHP 7.1 以来,上述所有内容似乎都已过时。正如@leninzprahy 在评论中提到的那样。
如果您正在寻找一种简单的方法来访问数组中返回的值,就像在 python 中一样,则可以使用以下语法:
[$a, $b, $c] = data();
这是类似功能中最好的方法
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']?>
我认为最好的方法是创建一个全局 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
这就是我在 yii 框架内所做的:
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;?>
我正在做什么,抓住我选择的桌子上的一个白痴部分。应该只适用于 php 减去数据库的“Yii”方式
正如 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();
我正在寻找一种比我正在使用的更简单的方法,但这篇文章没有回答。但是,我的方法有效,并且我不使用任何上述方法:
function MyFunction() {
$lookyHere = array(
'value1' => array('valuehere'),
'entry2' => array('valuehere')
);
return $lookyHere;
}
我的功能没有任何问题。我循环读取数据以显示相关数据。我不知道为什么有人会建议上述方法。如果您希望在一个文件中存储多个数组但未加载所有数组,请使用我上面的函数方法。否则,所有数组都将加载到页面上,从而减慢您的网站速度。我想出了这段代码,将所有数组存储在一个文件中,并在需要时使用单独的数组。
请注意,问题仅涉及从数组中获取值,而不是更新(分配)函数返回的数组中的值。如果将值分配给这样的数组,它们将进入该数组的本地副本,并且原始数组不会改变。这是一个单独的问题,此处未解决。
解决方案是使用引用运算符 & 两次:一次在函数中,一次在其结果的任何赋值中。
示例:
function &return_array()
{
$arr=['a'=>'A'];
return $arr; // Only a variable can be returned
}
$arr2=&return_array();
$arr2['a']='B';
// $arr and $arr2 are both now ['a'=>'B'];
您的职能是:
function data(){
$a = "abc";
$b = "def";
$c = "ghi";
return array($a, $b, $c);
}
它返回一个数组,其中位置 0 是 $a,位置 1 是 $b,位置 2 是 $c。因此,您可以通过这样做来访问 $a:
数据()[0]
如果执行 $myvar = data()[0] 并打印 $myvar,您将得到“abc”,这是在函数内分配给 $a 的值。