Answers for "read url file in php"

PHP
1

php open url

$page = fopen('http://www.example.com/filename.html');
//or
$page = file_get_contents('http://www.example.com/filename.html');

echo $page;
Posted by: Guest on August-06-2021
3

get url with php

$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
Posted by: Guest on December-02-2020

Browse Popular Code Answers by Language