首页 >后端开发 >php教程 >怎么在PHP函数中使用另外一个函数返回的数组

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

WBOY
WBOY原创
2016-06-13 10:24:01909浏览

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

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?PHPfunction f1(){    $a=array("1","2","3");    /* 定义一个数组 */    return $a;}function f2(){    $b = f1();    print_r($b);}f2();?>


------解决方案--------------------
能得到。不知道你运行在什么环境中?
------解决方案--------------------
PHP code
<?phpfunction 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