码迷,mamicode.com
首页 > Web开发 > 详细

php 实现传入参数的传出

时间:2014-12-30 11:24:15      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

 

类似于.net的out功能,php中可以使用&实现

如下示例:

<?php
$x
=2; inOutFunction($x); function inOutFunction(&$x){ $x=3; return ‘a‘; } echo $x; exit();


同样,在递归中可以使用此方法传值:

如下示例遍历文件夹中的文件:

<?php
$dir
=‘/‘; print_r(scanfDir($dir,true,$ret)); function scanfDir($dir = ‘‘, $all = false, &$ret = array()) { $x=‘avc‘; if (false !== ($handle = opendir($dir))) { while (false !== ($file = readdir($handle))) { if (!in_array($file, array(‘.‘, ‘..‘, ‘.git‘, ‘.gitignore‘, ‘.svn‘, ‘.htaccess‘, ‘.buildpath‘, ‘.project‘))) { $cur_path = $dir . ‘/‘ . $file; if (is_dir($cur_path)) { $ret[‘dirs‘][] = $cur_path; $all && scanfDir($cur_path, $all, $ret); } else { $ret [‘files‘] [] = $cur_path; } } } closedir($handle); } return $ret; }

 

php 实现传入参数的传出

标签:

原文地址:http://www.cnblogs.com/Bin-x/p/4193116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!