gpt4 book ai didi

php - 从其他文件调用 php 类

转载 作者:可可西里 更新时间:2023-11-01 00:52:51 24 4
gpt4 key购买 nike

我正在处理一些自定义帖子类型。我完成了第一个并意识到我正在使用的元数据框代码可以被其他 future 的自定义帖子类型(以及页面、帖子等)重复使用。所以我把这个类放在它自己的 php 文件中,并从我的子主题的 functions.php 文件中包含它。我以前从未使用过类,但我认为我可以从我想要的任何地方调用该类,因为这就是我为函数所做的。相反,我从我的 post-types.php 文件中调用它并得到以下错误:

“ fatal error :第 73 行的 D:\helga\xampp\htdocs\plagueround\wp-content\themes\plagueround_new2\functions\post-types.php 中找不到类‘My_meta_box’”

在我的子主题的 functions.php 中,我包含了我的类(class)所在的文件:

define('CHILDTHEME_DIRECTORY', get_stylesheet_directory() . '/');
// Meta Box Class - makes meta boxes
require_once(CHILDTHEME_DIRECTORY . 'functions/meta_box_class.php');

这是我的课

//My Meta Box CLASS
//from: http://www.deluxeblogtips.com/2010/05/howto-meta-box-wordpress.html

class My_meta_box {

protected $_meta_box;

// create meta box based on given data
function __construct($meta_box) {
$this->_meta_box = $meta_box;
add_action('admin_menu', array(&$this, 'add'));

add_action('save_post', array(&$this, 'save'));
}

/// Add meta box for multiple post types
function add() {
foreach ($this->_meta_box['pages'] as $page) {
add_meta_box($this->_meta_box['id'], $this->_meta_box['title'], array(&$this, 'show'), $page, $this->_meta_box['context'], $this->_meta_box['priority']);
}
}

// Callback function to show fields in meta box
function show() {
global $post;

// Use nonce for verification
echo '<input type="hidden" name="mytheme_meta_box_nonce" value="', wp_create_nonce(basename(__FILE__)), '" />';

echo '<table class="form-table">';

foreach ($this->_meta_box['fields'] as $field) {
// get current post meta data
$meta = get_post_meta($post->ID, $field['id'], true);

echo '<tr>',
'<th style="width:20%"><label for="', $field['id'], '">', $field['name'], '</label></th>',
'<td>';
switch ($field['type']) {
case 'text':
echo '<input type="text" name="', $field['id'], '" id="', $field['id'], '" value="', $meta ? $meta : $field['std'], '" size="30" style="width:97%" />',
'<br />', $field['desc'];
break;
case 'textarea':
echo '<textarea name="', $field['id'], '" id="', $field['id'], '" cols="60" rows="4" style="width:97%">', $meta ? $meta : $field['std'], '</textarea>',
'<br />', $field['desc'];
break;
case 'select':
echo '<select name="', $field['id'], '" id="', $field['id'], '">';
foreach ($field['options'] as $option) {
echo '<option', $meta == $option ? ' selected="selected"' : '', '>', $option, '</option>';
}
echo '</select>';
break;
case 'select2': //for when value and display text don't match
//$options array must be multidimensional with both the 'value' and the 'text' for each option
//for example = array( array(text=>text1,value=>value1),array(text=>text2,value=>value2))
//then in <option> value = $option['value'] and text = $option['text']
echo '<select name="', $field['id'], '" id="', $field['id'], '">';
foreach ($field['options'] as $option) {
echo '<option value="',$option['value'],'"', $meta == $option['value'] ? ' selected="selected"' : '', '>', $option['desc'], '</option>';
}
echo '</select>';
break;
case 'radio':
foreach ($field['options'] as $option) {
echo '<input type="radio" name="', $field['id'], '" value="', $option['value'], '"', $meta == $option['value'] ? ' checked="checked"' : '', ' />', $option['name'];
}
break;
case 'checkbox':
echo '<input type="checkbox" name="', $field['id'], '" id="', $field['id'], '"', $meta ? ' checked="checked"' : '', ' />';
break;
}
echo '<td>',
'</tr>';
}

echo '</table>';
}

// Save data from meta box
function save($post_id) {
// verify nonce
if (!wp_verify_nonce($_POST['mytheme_meta_box_nonce'], basename(__FILE__))) {
return $post_id;
}

// check autosave
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
return $post_id;
}

// check permissions
if ('page' == $_POST['post_type']) {
if (!current_user_can('edit_page', $post_id)) {
return $post_id;
}
} elseif (!current_user_can('edit_post', $post_id)) {
return $post_id;
}

foreach ($this->_meta_box['fields'] as $field) {
$old = get_post_meta($post_id, $field['id'], true);
$new = $_POST[$field['id']];

if ($new && $new != $old) {
update_post_meta($post_id, $field['id'], $new);
} elseif ('' == $new && $old) {
delete_post_meta($post_id, $field['id'], $old);
}
}
}
}

然后在我的 post-types.php 文件中,我在其中为自定义帖子类型定义了一些元框:

$prefix = '_events_';
$post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ;

$events_meta_box = array(
'id' => 'wpt_events',
'title' => 'Events Options',
'pages' => array('events'), // multiple post types possible
'context' => 'side',
'priority' => 'low',
'fields' => array(
array(
'name' => 'Headline',
'desc' => 'Enter the heading you\'d like to appear before the video',
'id' => $prefix . 'heading1',
'type' => 'text',
'std' => ''
),

)

);

$my_box = new My_meta_box($events_meta_box);

那么 - 我如何从其他文件中引用类?

编辑/延续

简单地将 require_once 语句移动到 post-types.php(试图调用该类的那个)似乎可行。但不管怎样,我尝试了自动加载脚本

function __autoload($className)
{
require(CHILDTHEME_DIRECTORY .'functions/class_' . $className . '.php') ;
}

我将我的类文件重命名为 class_My_meta_box.php 并且 My_meta_box 是类名

这会导致以下错误:警告:要求(D:\helga\xampp\htdocs\plagueround/wp-content/themes/plagueround_new/functions/class_WP_User_Search.php)[function.require]:无法打开流:D:\helga 中没有这样的文件或目录\xampp\htdocs\plagueround\wp-content\themes\plagueround_new\functions.php 第 66 行

fatal error :require() [function.require]: 需要打开失败 'D:\helga\xampp\htdocs\plagueround/wp-content/themes/plagueround_new/functions/class_WP_User_Search.php' (include_path='.; D:\helga\xampp\php\PEAR') 在 D:\helga\xampp\htdocs\plagueround\wp-content\themes\plagueround_new\functions.php 第 66 行

我不完全明白它说的是什么,但我认为它正在尝试自动加载一些默认的 wordpress 类......并且正在我的目录中查找它显然不存在。

最佳答案

实际上,文件是否包含类或其他内容并不重要。为了让 PHP 能够执行来自其他文件的代码,PHP 必须知道文件的位置,因此这是您的常规 requireinclude

例子:

// foo.class.php
class Foo {}

// main.php
require_once '/path/to/foo.class.php';
$foo = new Foo;

使用类时,use a Naming Convention 实际上是有意义的并使用 Autoloader , 所以 PHP will try to include the class on it's own ,而无需要求或包含它。

关于php - 从其他文件调用 php 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3426336/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com