WOOF :: json_get( String $url, Boolean $assoc = false, String $cache = false, Object $req = null )

Returns:

  • Object The JSON object if the request is successful and the assoc argument is false.
  • Array An associative array representing the JSON output if the request is successful and assoc is true.
  • Array An array of objects or associative arrays, if the json output has an array at the root level.
  • Boolean false if the JSON could not be retrieved.

Retrieves a json object or associative array by requesting a JSON string from a remote URL and decoding it. This method can also cache the result of the request using the WordPress transients API, accepting the same duration string accepted by the WOOF::cache.

Example:

Parameters:

  • String $url

    The URL to retrieve JSON from.

  • Boolean $assoc = false

    Whether to convert the JSON string to an assocative array (true) or an object (false).

  • String $cache = false

    For setting a value only. Either an:
    * integer number of seconds to store the transient
    * a string describing the time period, as parsed by the WOOF::seconds function (see related methods).
    * OR false if you do not wish to cache the request. This may be appropriate if the JSON API already caches its output.

  • Object $req = null

    An output parameter, allowing you to capture the request object created by the wp_remote_get method (which is used to request the JSON string). This will only be populated if a request is required, and may be useful for debugging purposes to discover errors.

Latest From the Blog

MasterPress 1.4.1 is now available

27th May 2024

This update addresses backwards compatibility issues that were introduced in the previous update. There were some edge cases where PHP 7 had issues and it didn’t work at all on PHP 5.6. We have now changed it so that the PHP 8 compatibility changes will now only affect PHP 8 and will be more thorough… 

Plugin Requirements

MasterPress requires a minimum of WordPress version 4.9, MySQL 5.6, and PHP version 5.6.20.

We also recommend that PHP is configured to use a memory limit of 64MB per request (128MB may be required for sites with higher complexity).

This plug-in is not compatible with the WordPress.com hosted service.

Three AM