0

我的 Wordpress 插件中有一个 PHP 类,该类在网站中被激活。我想在另一个插件(也在同一个网站中激活)中使用在此类中定义的方法(doc_export 函数)。我添加了这个,它似乎工作:

<?php
        // Export doc
        if (defined('DOC_ADMIN_MODE')) {

            $my_Documentation = new Class_Documentation;
            $mydocexport = $my_Documentation->doc_export();
            $mydocexport_file = ABSPATH . '_export/' . basename($site['site_url']) . '/doc.xml';
            file_put_contents($mydocexport_file, $mydocexport);
        }
?>

我想知道这是否是正确的方法..谢谢。

4

1 回答 1

0

是的,这是正确的方法。您还可以在http://php.net/manual/en/language.oop5.basic.php阅读 PHP 中的 OOP 基础

于 2013-01-25T09:31:21.940 回答