Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Loading an image using a PHP script

<?php
$file = "https://example.com/March.jpg";
$contents =  file_get_contents($file);
$expires = 14 * 60*60*24;
header("Content-Type: image/jpg");
header('Content-disposition: attachment; filename="March.jpg"'); //Use for force to download
header("Content-Length: " . strlen($contents));
header("Cache-Control: public", true);
header("Pragma: public", true);
header('Expires: ' . gmdate('D, d M Y H:i:s', time() + $expires) . ' GMT', true);
echo $contents; //Image load
?>
Comment

PREVIOUS NEXT
Code Example
Php :: wordpress add menu frontend 
Php :: Add “Affected Products” in catalog price rule 
Php :: ubuntu add phpstorm to launcher 
Php :: Lity in Wordpress 
Php :: strrev 
Php :: comparison operators in php 
Php :: add document by api php 
Php :: show number 1 as 00001 laravel 
Php :: concatenar 
Php :: laravel check if postback 
Php :: comparison of two tables in laravel using model 
Php :: PHP ord — Convert the first byte of a string to a value between 0 and 255 
Php :: search highlighting 
Php :: dequeue recaptcha wordpress 
Php :: SET DEFAULT hide title astra wordpress 
Php :: PHP: how to "clone from" another object of same class 
Php :: php to python converter online free 
Php :: replace key name in associative array 
Php :: fuzzy search in php with percentage 
Php :: When I try to run my code in chrome, i see the code that I have made in phpstorm and not the function that it has to do 
Php :: Funktion umgekehrt ausgeben, strrev 
Php :: select all matched text phpstrom 
Php :: how to react on a html button click in php 
Php :: post with count greater than 1 laravel 
Php :: php on page query 
Php :: config in php 
Php :: how to remove words in contain integer php 
Php :: app/Controllers/Home.php 
Php :: php artisan reset --force 
Php :: auto reload page in chat php 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =