我正在研究一个主题,需要帮助。
基本上我有一个早期设置的变量,叫做$type
<?php
if ( preg_match( "/^kssm-/i", $licensekey )&& preg_match("/@/i", $licensekey) == true) : ?>
<span style="color:#ae5842;">
<?php print( \'Your License is Active\' ); $type = 1; ?>
</span>
然后我有一个函数,我想使用
$type
变量
function file_pull() {
if ( $upgrade_type == 1 ) {
$import_path = \'/main/\';
$files_array = array(
\'start\' => array(),
\'home\' => array(
\'description\' => __( \'Importing: Main Templates\', \'kss\' ),
\'files\' => array(
\'home.xml\',
),
),
);
}
if ( $upgrade_type == 2 ) {
$import_path = \'/main/\';
$files_array = array(
\'start\' => array(),
\'home\' => array(
\'description\' => __( \'Importing: Main Templates\', \'kss\' ),
\'files\' => array(
\'page1.xml\',
),
),
);
}
}
我试过环球,但没有用。虽然这不是一个优雅的解决方案。
有什么值得一试的吗?
谢谢,谢谢。