从另一个类php调用类中的函数

时间:2015-07-27 05:01:15

标签: php oop

我对php中的oops很新。任何人都可以告诉我如何使用功能

    public static function getCategories($id_lang = false, $active = true,$order = true, $sql_filter = '', $sql_sort = '', $sql_limit = '')
            {
             if (!Validate::isBool($active))
             die(Tools::displayError());
             $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('
              SELECT *
              FROM `' . _DB_PREFIX_ . 'category` c
              ' . Shop::addSqlAssociation('category', 'c') . '
              LEFT JOIN `' . _DB_PREFIX_ . 'category_lang` cl ON c.`id_category` = cl.`id_category`' . Shop::addSqlRestrictionOnLang('cl') . '
              WHERE 1 ' . $sql_filter . ' ' . ($id_lang ? 'AND `id_lang` = ' . (int)$id_lang : '') . '
              ' . ($active ? 'AND `active` = 1' : '') . '
             ' . (!$id_lang ? 'GROUP BY c.id_category' : '') . '
              ' . ($sql_sort != '' ? $sql_sort : 'ORDER BY c.`level_depth` ASC, category_shop.`position` ASC') . '
            ' . ($sql_limit != '' ? $sql_limit : '')
                      );

                if (!$order)
                   return $result;

                   $categories = array();
                   foreach ($result as $row)
                   $categories[$row['id_parent']][$row['id_category']]['infos'] = $row;

               return $categories;
              }

getCategories()位于名为 class CategoryCore 的类中,我想将此getcategory用于新类 totalDiscount ,其中一个名为{的函数{1}}

如何在配置产品中使用configure_products();

2 个答案:

答案 0 :(得分:1)

在页面上包含类文件

您可以在另一个类

中创建该类的对象
function configure_products(){
    $categories = new CategoryCore();
    $categories->getcategory();
   // use $categories to do stuff 
     ......
     .....
}

或者

您可以直接调用

function configure_products(){
     $categories =   CategoryCore::getCategories();
     .....
     ....
}

答案 1 :(得分:0)

您的函数getCategories()是一个静态函数。

因此,可以在不在类CategoryCore上创建对象的情况下调用它。

您可以将其用作(使用范围解析运算符):

$categories = CategoryCore::getCategories(YOUR_ARGUMENTS)

Reference