There are really many good things abroad. Now I'll post a category for accessing ACCESS! _PHP Tutorial

WBOY
Release: 2016-07-13 11:00:22
Original
938 people have browsed it

这是ACCESS的类
Class AccessDBM
{
    var $COUNT = 0;
    var $VALUES = array();
    var $FILE = "";
    var $ERROR = "";
    var $EXISTS = false;
    var $STATIC = false;
    var $EXACT = false;
    var $DBM;
//    Older version of PHP can't do the 'new ClassName(args)'
//    Use initilize() if this is the case.
//    *******************************************************
    function AccessDBM ($dbmFile, $static = 0)
    {
        global $php_errormsg;
        if(!empty($dbmFile))
        {
       if(file_exists($dbmFile))
       {
           $this->EXISTS = true;
       }
       if($static != 0)
       {
           $this->STATIC = true;
       }
       $this->FILE = $dbmFile;
        }
        return;
    }
//    *******************************************************
//    Identical to AccessDBM
    function initialize ($dbmFile, $static = 0)
    {
        global $php_errormsg;

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/631825.htmlTechArticle这是ACCESS的类 ? Class AccessDBM { var $COUNT = 0; var $VALUES = array(); var $FILE = ; var $ERROR = ; var $EXISTS = false; var $STATIC = false; var $EXACT = false; var $DBM; //...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template