首頁 > 後端開發 > php教程 > 怎么在PHP函数中使用另外一个函数返回的数组

怎么在PHP函数中使用另外一个函数返回的数组

WBOY
發布: 2016-06-13 13:30:36
原創
1034 人瀏覽過

如何在PHP函数中使用另外一个函数返回的数组
示例代码如下,最后在f2中得不到f1返回的数组,print_r($b);显示为空

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<?PHP function f1()
{
    $a=array("1","2","3");    /* 定义一个数组 */
    return $a;
}
function f2()
{
    $b = f1();
    print_r($b);
}

f2();
?>

登入後複製


------解决方案--------------------
能得到。不知道你运行在什么环境中?
------解决方案--------------------
PHP code

<?php function f1()
{
    $a=array("1","2","3");    /* 定义一个数组 */
    return $a;
}
function f2()
{
    $b = f1();    #如果在类中,就需要$this->f1()
    print_r($b);
}

f2();
#Array ( [0] => 1 [1] => 2 [2] => 3 )
?>
<br><font color="#e78608">------解决方案--------------------</font><br>没有关系<br>都能得到结果
<br><font color="#e78608">------解决方案--------------------</font><br>反正我的是能得到 <div class="clear">
                 
              
              
        
            </div>
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板