当前位置:  编程技术>php
本页文章导读:
    ▪php用户类(大型系统中使用的一个php用户类)      php实现的用户类,分享给大家。 代码:   代码示例: <?php /* * php用户类 * edit: www. * */     class user     {         var $usertable;         function get_oneuser($field,$value)         .........
    ▪php列出目录中所有子目录的实现代码      php写的自定义函数,列出目录中的所有子目录:   代码示例: <?php /** * 取出指定目录的所有子目录 * edit: www. * 2013/10/9 */ function listdir($dir){     if ($handle = opendir($dir)){         $out.........
    ▪PHPExcel读取excel文件的例子      首先,下载phpexcel类库:http://phpexcel.codeplex.com/。 然后,在代码中要包含PHPExcel类库文件,不确定文件类型时,可以使用PHPExcel_IOFactory::identify方法返回文件的类型,传递给该函数一个文件名.........

[1]php用户类(大型系统中使用的一个php用户类)
    来源: 互联网  发布时间: 2013-12-24

php实现的用户类,分享给大家。
代码:
 

代码示例:

<?php
/*
* php用户类
* edit: www.
*
*/
    class user
    {
        var $usertable;

        function get_oneuser($field,$value)
        {
            $field_array=array("id","name");        //查询方式
            if(in_array($field,$field_array))
            {
                $sql="SELECT * FROM `$this->usertable` FROM $field='$value'";
                $db=new database;
                $res=$db->execute($sql);
                $obj_user=mysql_fetch_object($res);
                return $obj_user;
            }
            else    echo "查询方式不对";
        }

        function get_moreusers()
        {
            global $db;
            $argnums=func_num_args();
            $argarr=func_get_args();
            switch($argnums)
            {
                case 0:
                    $sql="SELECT * FROM `$this->usertable`";
                    break;
                case 2:
                    $sql="SELECT * FROM `$this->usertable` WHERE $argarr[0]='$argarr[1]'";
                    break;
                case 4:
                    $sql="SELECT * FROM `$this->usertable` WHERE $argarr[0]='$argarr[1]' AND $argarr[2]='$argarr[3]'";
                    break;
            }
            //$db=new database;
            $res=$this->execute($sql);
            $obj_arr=array();
            while($obj=mysql_fetch_object($res))
            {
                $obj_arr[]=$obj;
            }
            return $obj_arr;
        }

    }
?>


    
[2]php列出目录中所有子目录的实现代码
    来源: 互联网  发布时间: 2013-12-24

php写的自定义函数,列出目录中的所有子目录:
 

代码示例:

<?php
/**
* 取出指定目录的所有子目录
* edit: www.
* 2013/10/9
*/
function listdir($dir){
    if ($handle = opendir($dir)){
        $output = array();
        while (false !== ($item = readdir($handle))){
            if (is_dir($dir.'/'.$item) and $item != "." and $item != ".."){
                $output[] = $dir.'/'.$item;
                $output = array_merge($output, ListDescendantDirectories($dir.'/'.$item));
            }
        }
        closedir($handle);
        return $output;
    }else{
        return false;
    }
}

//调用,取目录中的所有子目录,循环遍历。
$dirs = listdir('myDirectory');
foreach($dirs as $dir){
    echo $dir.'<br>';
}
?>


    
[3]PHPExcel读取excel文件的例子
    来源: 互联网  发布时间: 2013-12-24

首先,下载phpexcel类库:http://phpexcel.codeplex.com/。

然后,在代码中要包含PHPExcel类库文件,不确定文件类型时,可以使用PHPExcel_IOFactory::identify方法返回文件的类型,传递给该函数一个文件名即可。

然后,根据返回的文件类型创建该类型的读取对象,进行文件的load。

最后,进行excel数据的读取即可。

有关phpexcel的更详细用法,请参考文档:
phpexcel快速开发指南
phpExcel中文帮助手册

实例代码:
 

代码示例:
<?php
/**
* PHPExcel读取excel文件
* site: www.
*
*/
    require_once('include/common.inc.php');
    require_once(ROOTPATH . 'include/phpExcel/PHPExcel/IOFactory.php');
   
    $filePath = './file/xls/110713.xls';
   
    $fileType = PHPExcel_IOFactory::identify($filePath); //文件名自动判断文件类型
    $objReader = PHPExcel_IOFactory::createReader($fileType);
    $objPHPExcel = $objReader->load($filePath);
   
    $currentSheet = $objPHPExcel->getSheet(0); //第一个工作簿
    $allRow = $currentSheet->getHighestRow(); //行数
    $output = array();
    $preType = '';
   
    $qh = $currentSheet->getCell('A4')->getValue();
    //按照文件格式从第7行开始循环读取数据
    for($currentRow = 7;$currentRow<=$allRow;$currentRow++){
        //判断每一行的B列是否为有效的序号,如果为空或者小于之前的序号则结束
        $xh = (int)$currentSheet->getCell('B'.$currentRow)->getValue();
        if(empty($xh))break;
       
        $tmpType = (string)$currentSheet->getCell('C'.$currentRow)->getValue(); //赛事类型
        if(!empty($tmpType))$preType = $tmpType;
        $output[$xh]['type'] = $preType;
        $output[$xh]['master'] = $currentSheet->getCell('F'.$currentRow)->getValue(); //主队
        $output[$xh]['guest'] = $currentSheet->getCell('H'.$currentRow)->getValue(); //客队   
    }
   
    //从当前行开始往下循环,取出第一个不为空的行
    for( ; ; $currentRow++){
        $xh = (int)$currentSheet->getCell('B'.$currentRow)->getValue();
        if(!empty($xh))break;
    }
   
    for( ; $currentRow <= $allRow; $currentRow++){
        $xh = (int)$currentSheet->getCell('B'.$currentRow)->getValue();
        if(empty($xh))break;
       
        $output[$xh]['rq'] = $currentSheet->getCell('I'.$currentRow)->getValue();
    }
    header("content-type:text/html; charset=utf-8");
   
    echo '期号:' . $qh . "\n\n";
    if(!empty($output)){
        printf("%-5s\t%-15s\t%-40s\t%-40s\t%-5s\n", '序号', '赛事类型', '主队', '客队', '让球值');
        foreach($output as $key => $row){
            $format = "%-5d\t%-15s\t%-40s\t%-40s\t%-5s\n";
            printf($format, $key, $row['type'], $row['master'], $row['guest'], $row['rq']);
        }
    }
?>

您可能感兴趣的文章:
PHPExcel常用方法举例
PHP导出EXCEL的简单范例 使用phpexcel类库导出excel
phpExcel类的使用方法分享
phpexcel导出excel的经典实例
phpexcel类库实例 支持(excel2003 excel2007)
phpexcel导出数据的实例代码
phpexcel导入excel到数据库的代码
使用PHPExcel判别和格式化Excel中的日期格式的例子
phpexcel导出excel的颜色与网页中颜色不一致的解决方法
CI中使用PHPExcel导出数据到Excel


    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3