我有一个 PHP 类,其中包含我想在主题上选择的任何地方使用的方法。
例如这个类:
<?php
class MyClass
{
const constant = 'constant value';
function showConstant() {
echo self::constant . "\n";
}
}
$class = new MyClass();
$class->showConstant();
?>
我将如何在我的主题中包含这样的课程?