Heim >Backend-Entwicklung >PHP-Tutorial >国外好东西真的多,现在贴上一个访问ACCESS的类!_PHP教程

国外好东西真的多,现在贴上一个访问ACCESS的类!_PHP教程

WBOY
WBOYOriginal
2016-07-13 11:00:22958Durchsuche

这是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; //...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn