Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
temp
/
wp-content
/
plugins
/
bluehost-wordpress-plugin
/
inc
/
Editing: ResponseUtilities.php
<?php /** * Class containing utility functions for working with WordPress HTTP responses. * * @package BluehostWordPressPlugin */ namespace Bluehost; /** * Class ResponseUtilities */ class ResponseUtilities { /** * Parse a WordPress response for JSON data. * * @param array $response WordPress request response * @param bool $assoc_array Whether or not to convert objects into associative arrays. * * @return array An array of data */ public static function parse_json_response( $response, $assoc_array = false ) { $data = array(); $body = wp_remote_retrieve_body( $response ); if ( $body ) { $payload = json_decode( $body, $assoc_array ); if ( $payload && is_array( $payload ) ) { $data = (array) $payload; } } return $data; } /** * Get response timestamp. * * @param array $response WordPress request response * * @return int Returns the timestamp or 0 on error. */ public static function get_response_timestamp( $response ) { $timestamp = 0; try { $date = wp_remote_retrieve_header( $response, 'date' ); $date_time = new \DateTime( $date ); $timestamp = (int) $date_time->format( 'U' ); } catch ( \Exception $e ) { trigger_error( $e->getMessage() ); // phpcs:ignore } return $timestamp; } }
Save
Cancel