7 Super Useful PHP Code Snippets_PHP Tutorial
1. Super simple page caching
If your project is not based on a CMS system or framework, it will be very practical to build a simple caching system. The code below is very simple, but it can actually solve the problem for small websites.
// define the path and name of cached file
$cachefile = 'cached-files/'.date('M-d-Y').'.php';
// define how long we want to keep the file in seconds. I set mine to 5 hours.
$cachetime = 18000;
// Check if the cached file is still fresh. If it is, serve it up and exit.
if (file_exists($cachefile) && time() - $cachetime < ; filemtime($cachefile)) {
include($cachefile);
exit;
}
// if there is either no file OR the file to too old, render the page and capture the HTML.
ob_start();
?>
output all your html here. / We're done! Save the cached content to a file
$fp = fopen($cachefile, 'w');
fwrite($fp, ob_get_contents());
fclose($fp) ;
// finally send browser output
ob_end_flush();
?>
Click here for details: http://wesbos.com/simple-php- page-caching-technique/
This is a very useful distance calculation function that uses latitude and longitude to calculate the distance from point A to point B. This function can return distance in three unit types: miles, kilometers, and nautical miles.
Copy code
$dist = acos($dist);
$dist = rad2deg($dist);
$miles = $dist * 60 * 1.1515 ;
$unit = strtoupper($unit);
if ($unit == "K") {
return ($miles * 1.609344);
} else if ($unit == "N") {
return ($miles * 0.8684);
} else {
return $miles;
}
}
How to use :
Copy code
Click here to view details: http://www.phpsnippets.info/calculate-distances-in-php
This useful function can convert events represented by seconds into time formats such as year, month, day, hour, etc.
Copy code
"years" => 0, "days" => 0, "hours" => 0,
"minutes" => 0, "seconds" => 0,
);
if($time >= 31556926){
$value["years"] = floor($time/31556926);
$time = ($ time%31556926);
}
if($time >= 86400){
$value["days"] = floor($time/86400);
$time = ($time %86400);
}
if($time >= 3600){
$value["hours"] = floor($time/3600);
$time = ($time% 3600);
}
if($time >= 60){
$value["minutes"] = floor($time/60);
$time = ($time%60 );
}
$value["seconds"] = floor($time);
return (array) $value;
}else{
return (bool) FALSE;
}
}
Click here to view details: http://ckorp.net/sec2time.php
Some types such as mp3 files are usually played or used directly in the client browser. If you want them to be forced to download, that's no problem. You can use the following code:
Copy code
header('Pragma: public'); // required
header('Expires: 0'); // no cache
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Cache-Control: private',false);
header('Content- Type: '.$mime);
header('Content-Disposition: attachment; filename="'.basename($file_name).'"');
header('Content-Transfer-Encoding: binary' );
header('Connection: close');
readfile($file_name); // push it out
exit();
}
Click here to view details: Credit: Alessio Delmonti
5. Use Google API to obtain current weather information
Want to know today’s weather? This code will tell you that in just 3 lines of code. You just need to replace ADDRESS with the city you want.
$xml = simplexml_load_file('http://www.google.com/ig/ api?weather=ADDRESS');
$information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition");
echo $information[0]->attributes();
Click here to view details: http://ortanotes.tumblr.com/post/200469319/current-weather-in-3-lines-of-php
6. Obtain Latitude and longitude of an address
With the popularity of Google Maps API, developers often need to obtain the longitude and latitude of a specific location. This very useful function takes an address as a parameter and returns an array containing longitude and latitude data.
function getLatLong($address){
if (!is_string($address) )die("All Addresses must be passed as a string");
$_url = sprintf('http://maps.google.com/maps?output=js&q=%s',rawurlencode($address)) ;
$_result = false;
if($_result = file_get_contents($_url)) {
if(strpos($_result,'errortips') > 1 || strpos($_result,'Did you mean:') !== false) return false;
preg_match('!center:s*{lat:s*(-?d+.d+),lng:s*(-?d+.d+)}! U', $_result, $_match);
$_coords['lat'] = $_match[1];
$_coords['long'] = $_match[2];
}
return $_coords;
}
Click here to view details: http://snipplr.com/view.php?codeview&id=47806
7. Use PHP and Google gets the favicon icon of the domain name
Some websites or web applications need to use favicon icons from other websites. It's easy to do it using Google and PHP, but the premise is that Google won't reset the connection!
function get_favicon($url){
$url = str_replace("http: //",'',$url);
return "http://www.google.com/s2/favicons?domain=".$url;
}
Click here to view details: http://snipplr.com/view.php?codeview&id=45928

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
