首页 > php代码 > php生成xml 类

php生成xml 类

<?php
class majax extends blogadmin {
    var $result = '<?xml version="1.0" encoding="gb2312"?>';
    function majax($db) {
        $this->db = $db;
        $this->adminname = $_SESSION['adminname'];
    }
    function checkLogin() {
        if ($this->islogin()) {
            Return 0;
        } else {
            Return 1;
        }
    }
    function addCatResult($cTitle) {
        $cId = $this->addCat($cTitle);
        if ($cId > 0) {
            $this->result.= "<succes id="$cId">$cTitle</succes>";
        } else {
            $this->result.= "<loss id="$cId">$cTitle</loss>";
        }
        Return $this->result;
    }
    function upCatResult($cId, $cTitle) {
        if ($this->upCat($cId, $cTitle)) {
            $this->result.= "<succes id="$cId">$cTitle</succes>";
        } else {
            $this->result.= "<loss id="$cId">$cTitle</loss>";
        }
        Return $this->result;
    }
    function delCat($cId, $cNum) {
        if ($this->delCat($cId, $cNum)) {
            $this->result.= "<succes id="$cId">$cTitle</succes>";
        } else {
            $this->result.= "<loss id="$cId">$cTitle</loss>";
        }
        Return $this->result;
    }
    function delReviewResult($rId, $aId) {
        if ($this->delReview($rId, $aId)) {
            $this->result.= "<succes id="$rId">$cTitle</succes>";
        } else {
            $this->result.= "<loss id="$rId">$cTitle</loss>";
        }
        Return $this->result;
    }
    function addLinkResult($ln, $lu, $lc) {
        $lId = $this->addLink($ln, $lu, $lc);
        if ($lId > 0) {
            $this->result.= "<succes id="$lId">yes</succes>";
        } else {
            $this->result.= "<loss>no</loss>";
        }
        Return $this->result;
    }
    function editLinkResult($lid, $ln, $lu, $lc) {
        if ($this->editLink($lid, $ln, $lu, $lc)) {
            $this->result.= "<succes id="$lid">yes</succes>";
        } else {
            $this->result.= "<loss>no</loss>";
        }
        Return $this->result;
    }
}


本文地址:http://www.phprm.com/code/bb8a708c9eda5fa798251abef176a056.html

转载随意,但请附上文章地址:-)

标签:none

发表留言