php - Slimmest cURL calling
one text
Solution:
If you don't need any of the features of curl
, use file_get_contents
.
$content = file_get_contents("https://example.com/path/")
Sourceone text
If you don't need any of the features of curl
, use file_get_contents
.
$content = file_get_contents("https://example.com/path/")
Source