public static function Helper::http__request__get_content in Anti Spam by CleanTalk 9.1.x
Same name and namespace in other branches
- 8.4 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\CommonCode
public static function http__request__get_content($url) {
return static::http__request($url, array(), 'get dont_split_to_array');
}