You are here

public static function Helper::http__request__get_content in Anti Spam by CleanTalk 8.4

Same name and namespace in other branches
  1. 9.1.x src/lib/Cleantalk/Common/Helper.php \Cleantalk\Common\Helper::http__request__get_content()

Wrapper for http_request Requesting data via HTTP request with GET method

Parameters

string $url:

Return value

array|mixed|string

File

src/lib/Cleantalk/Common/Helper.php, line 1297

Class

Helper
CleanTalk Helper class. Compatible with any CMS.

Namespace

Cleantalk\Common

Code

public static function http__request__get_content($url) {
  return static::http__request($url, array(), 'get dont_split_to_array');
}