wppaste
WordPress

get_blog_details( int|string|array $fields = null, bool $get_all = true ): WP_Site|false

Since
MU (3.0.0)
Source
wp-includes/ms-blogs.php:133
Retrieves the details for a blog from the blogs table and blog options.

Compatibility

WordPress
since MU (3.0.0)
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.

Parameters

$fieldsint|string|arrayoptional
A blog ID, a blog slug, or an array of fields to query against.
Defaults to the current blog ID.Default: null
$get_allbooloptional
Whether to retrieve all details or only the details in the blogs table.
Default is true.Default: true

Return value

WP_Site|false
Blog details on success. False on failure.

Performance profile

How much work a call to get_blog_details() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Heavy

Reaches the database via ->get_row().

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
12–173

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 297.

Plugin surface
1 hook

Third-party callbacks on 'blog_details' run inside this call, and their cost is not bounded by anything here.

Called by
0

Nothing in core calls this; the cost is only what you spend yourself.

What it touches

  • cacheobject cachewp_cache_get()called directly
  • optionoption read or writeget_option()called directly
  • hookthird-party callbacksapply_filters_deprecated()called directly
  • sqldatabase query->get_row()called directly
  • serializeserialisationmaybe_unserialize()one call below get_blog_details()

Further down the call graph this can also reach query and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.

What one call costs · 221 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost get_blog_details() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
is_array($fields) && !isset($fields)12–14none
is_array($fields) && !is_subdomain_install()15–17is_subdomain_install()
always24–27wp_cache_get()
!is_array($fields)25–28get_current_blog_id(), wp_cache_get()
is_array($fields) && $blog !== false26md5(), wp_cache_get()
is_array($fields) && is_subdomain_install() && $blog !== false27–29is_subdomain_install(), md5(), wp_cache_get()
!is_array($fields) && !$fields28–31get_id_from_blogname(), wp_cache_get()
always31–34wp_cache_get(), wp_cache_get()
!is_array($fields)32–35get_current_blog_id(), wp_cache_get(), wp_cache_get()
!is_array($fields) && !$fields35–38get_id_from_blogname(), wp_cache_get(), wp_cache_get()
!empty($details)40–46wp_cache_get(), wp_cache_get(), wp_cache_set()
empty($details)41–51wp_cache_get(), wp_cache_get(), ::WP_Site(), wp_cache_set()
209 further outcomes, up to 173 instructions
!is_array($fields) && !empty($details)41–47get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_set()
!is_object($details) && $details !== -142–45wp_cache_get(), wp_cache_delete(), wp_cache_get()
!is_array($fields) && empty($details)42–52get_current_blog_id(), wp_cache_get(), wp_cache_get(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -143–46get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get()
!is_array($fields) && !$fields && !empty($details)44–50get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_set()
!is_array($fields) && !$fields && empty($details)45–55get_id_from_blogname(), wp_cache_get(), wp_cache_get(), ::WP_Site(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false45–51is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row()
!is_array($fields) && !$fields && !is_object($details) && $details !== -146–49get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get()
is_array($fields) && $blog === false47–51md5(), wp_cache_get(), ->prepare(), ->get_row()
!is_object($details) && $details !== -1 && !empty($details)50–55wp_cache_get(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details)51–57wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details)51–60wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details)51–56get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details)52–62wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details)52–58get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details)52–61get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details)53–63get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details)54–59get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details)55–61get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details)55–64get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details)56–66get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details)61–66wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details)62–71wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details)62–67get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details)63–72get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details)65–70get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details)66–75get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false68–77is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get()
is_array($fields) && $blog === false70–77md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get()
is_array($fields) && is_subdomain_install() && $blog === false75–84is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get()
is_array($fields) && $blog === false77–84md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get()
is_array($fields) && is_subdomain_install() && $blog === false && !empty($details)84–96is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && empty($details)85–101is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), wp_cache_set()
is_array($fields) && $blog === false && !empty($details)86–96md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -186–95is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get()
!empty($details) && $blog_id === false86–92wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && empty($details)87–101md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !empty($details) && $blog_id === false87–93get_current_blog_id(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -188–95md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get()
!empty($details) && $blog_id === false88–94wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !empty($details) && $blog_id === false89–95get_current_blog_id(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!empty($details) && $blog_id !== false90–96wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !empty($details) && $blog_id === false90–96get_id_from_blogname(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
empty($details) && $blog_id === false91–97wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !empty($details) && $blog_id !== false91–97get_current_blog_id(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!empty($details) && $blog_id !== false92–98wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !empty($details) && $blog_id === false92–98get_id_from_blogname(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && empty($details) && $blog_id === false92–98get_current_blog_id(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
empty($details) && $blog_id === false93–99wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !empty($details) && $blog_id !== false93–99get_current_blog_id(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details)94–105is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_array($fields) && !$fields && !empty($details) && $blog_id !== false94–100get_id_from_blogname(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && empty($details) && $blog_id === false94–100get_current_blog_id(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details)95–107is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details)95–110is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
empty($details) && $blog_id !== false95–101wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && empty($details) && $blog_id === false95–101get_id_from_blogname(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details)96–105md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id === false96–101wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details)96–112is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !$fields && !empty($details) && $blog_id !== false96–102get_id_from_blogname(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && empty($details) && $blog_id !== false96–102get_current_blog_id(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details)97–107md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details)97–110md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id === false97–103wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false97–102get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
empty($details) && $blog_id !== false97–103wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && empty($details) && $blog_id === false97–103get_id_from_blogname(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details)98–112md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id === false98–103wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false98–104get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && empty($details) && $blog_id !== false98–104get_current_blog_id(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id === false99–105wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && empty($details) && $blog_id !== false99–105get_id_from_blogname(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false99–104get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false100–105wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false100–105get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false100–106get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id === false101–106wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false101–107wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false101–107get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false101–106get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && empty($details) && $blog_id !== false101–107get_id_from_blogname(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id === false102–108wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false102–107wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false102–107get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false102–107get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false102–108get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id === false103–108wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false103–109wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false103–109get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false103–109get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false103–108get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id === false104–110wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false104–109get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false104–109get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false104–110get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details)105–116is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id !== false105–110wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false105–110get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false105–111get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false105–111get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details)106–121is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id !== false106–112wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false106–112get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false106–111get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false106–111get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details)107–116md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id === false107–112wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id !== false107–112wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false107–112get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false107–113get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false107–113get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details)108–121md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false108–113get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id !== false108–114wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false108–114get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false108–113get_current_blog_id(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id === false109–114wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false109–114get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false109–115get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false110–116get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false110–115get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false111–116wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false111–116get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false111–116get_id_from_blogname(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id === false112–117wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false112–117get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false112–118get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false113–118wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false113–118get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false113–118get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id === false114–119wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false114–119get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false115–120get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false115–120get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id !== false116–121wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false116–121get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false117–122get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false117–122get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_object($details) && $details !== -1 && empty($details) && $blog_id !== false118–123wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false118–123get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false119–124get_current_blog_id(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false120–125get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
!is_array($fields) && !$fields && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false122–127get_id_from_blogname(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !empty($details) && $blog_id === false130–142is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !empty($details) && $blog_id === false132–142md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !empty($details) && $blog_id === false132–144is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !empty($details) && $blog_id === false134–144md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !empty($details) && $blog_id !== false134–146is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && empty($details) && $blog_id === false135–147is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !empty($details) && $blog_id !== false136–146md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !empty($details) && $blog_id !== false136–148is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && empty($details) && $blog_id === false137–147md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && empty($details) && $blog_id === false137–149is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !empty($details) && $blog_id !== false138–148md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && empty($details) && $blog_id === false139–149md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && empty($details) && $blog_id !== false139–151is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false140–151is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false141–153is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && empty($details) && $blog_id !== false141–151md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && empty($details) && $blog_id !== false141–153is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false142–151md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false142–153is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false143–153md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false143–155is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && empty($details) && $blog_id !== false143–153md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false144–153md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false144–155is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false145–155md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false145–156is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false145–157is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false146–155md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false146–158is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false146–157is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false147–156md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false147–157md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false147–158is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false147–159is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false148–158md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false148–157md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false148–160is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false149–158md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false149–159md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false149–160is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false150–160md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false150–162is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false151–162is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false151–160md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false151–162is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false152–162md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false152–164is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false153–162md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false153–164is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false153–162md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false154–164md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id === false155–164md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false155–166is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false156–167is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false157–166md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false157–168is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false158–167md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false158–169is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && !empty($details) && $blog_id !== false159–168md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id === false160–169md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false160–171is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false162–171md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && is_subdomain_install() && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false162–173is_subdomain_install(), md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()
is_array($fields) && $blog === false && !is_object($details) && $details !== -1 && empty($details) && $blog_id !== false164–173md5(), wp_cache_get(), ->prepare(), ->get_row(), wp_cache_set(), wp_cache_get(), wp_cache_delete(), wp_cache_get(), wp_cache_delete(), ::WP_Site(), get_current_blog_id(), switch_to_blog(), get_option(), get_option(), get_option(), get_option(), restore_current_blog(), wp_cache_set(), md5(), wp_cache_set()

Across PHP versions

PHPCompiledExecutedBranchesNotes
8.6-dev29712–17328
8.529712–17328
8.429712–1732816 fewer instructions than PHP 8.3
8.331312–18028
8.231312–18028
8.131312–180282 fewer instructions than PHP 7.4
7.431512–18128

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Hooks and filters fired · 1

One hook fires while get_blog_details() runs, in this order:

  1. do_action( blog_details )filter_deprecatedline 270 (+137 into the body)

    Filters a blog's details.

Uses · 13

Show all 13

Source code

function get_blog_details( $fields = null, $get_all = true ) {	global $wpdb; 	if ( is_array( $fields ) ) {		if ( isset( $fields['blog_id'] ) ) {			$blog_id = $fields['blog_id'];		} elseif ( isset( $fields['domain'] ) && isset( $fields['path'] ) ) {			$key  = md5( $fields['domain'] . $fields['path'] );			$blog = wp_cache_get( $key, 'blog-lookup' );			if ( false !== $blog ) {				return $blog;			}			if ( str_starts_with( $fields['domain'], 'www.' ) ) {				$nowww = substr( $fields['domain'], 4 );				$blog  = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->blogs WHERE domain IN (%s,%s) AND path = %s ORDER BY CHAR_LENGTH(domain) DESC", $nowww, $fields['domain'], $fields['path'] ) );			} else {				$blog = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->blogs WHERE domain = %s AND path = %s", $fields['domain'], $fields['path'] ) );			}			if ( $blog ) {				wp_cache_set( $blog->blog_id . 'short', $blog, 'blog-details' );				$blog_id = $blog->blog_id;			} else {				return false;			}		} elseif ( isset( $fields['domain'] ) && is_subdomain_install() ) {			$key  = md5( $fields['domain'] );			$blog = wp_cache_get( $key, 'blog-lookup' );			if ( false !== $blog ) {				return $blog;			}			if ( str_starts_with( $fields['domain'], 'www.' ) ) {				$nowww = substr( $fields['domain'], 4 );				$blog  = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->blogs WHERE domain IN (%s,%s) ORDER BY CHAR_LENGTH(domain) DESC", $nowww, $fields['domain'] ) );			} else {				$blog = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->blogs WHERE domain = %s", $fields['domain'] ) );			}			if ( $blog ) {				wp_cache_set( $blog->blog_id . 'short', $blog, 'blog-details' );				$blog_id = $blog->blog_id;			} else {				return false;			}		} else {			return false;		}	} else {		if ( ! $fields ) {			$blog_id = get_current_blog_id();		} elseif ( ! is_numeric( $fields ) ) {			$blog_id = get_id_from_blogname( $fields );		} else {			$blog_id = $fields;		}	} 	$blog_id = (int) $blog_id; 	$all     = $get_all ? '' : 'short';	$details = wp_cache_get( $blog_id . $all, 'blog-details' ); 	if ( $details ) {		if ( ! is_object( $details ) ) {			if ( -1 === $details ) {				return false;			} else {				// Clear old pre-serialized objects. Cache clients do better with that.				wp_cache_delete( $blog_id . $all, 'blog-details' );				unset( $details );			}		} else {			return $details;		}	} 	// Try the other cache.	if ( $get_all ) {		$details = wp_cache_get( $blog_id . 'short', 'blog-details' );	} else {		$details = wp_cache_get( $blog_id, 'blog-details' );		// If short was requested and full cache is set, we can return.

Changelog

Introduced in MU (3.0.0). Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.0.4 tag, from src/wp-includes/ms-blogs.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.