>백엔드 개발 >PHP 튜토리얼 > 怎么在PHP函数中使用另外一个函数返回的数组

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

WBOY
WBOY원래의
2016-06-13 13:30:361033검색

如何在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>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.