芝麻web文件管理V1.00
编辑当前文件:/home/paymbalq/public_html/wp-content/plugins/w3-total-cache/Util_Request.php
$value ) { if ( strpos( $key, $prefix ) === 0 || strpos( $key, str_replace( '.', '_', $prefix ) ) === 0 ) { $array[ substr( $key, strlen( $prefix ) ) ] = $value; } } return $array; } /** * Returns request array. * * phpcs:disable WordPress.Security.NonceVerification.Recommended * * @return array */ public static function get_request() { if ( ! isset( $_GET ) ) { $_GET = array(); } if ( ! isset( $_POST ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing $_POST = array(); } return array_merge( $_GET, $_POST ); // phpcs:ignore } }