


Compilation of the most commonly used custom functions in PHP project development_PHP tutorial
//alert prompt
function alert($msg){
echo "<script>alert('$msg');</script>";
}
//Convert some predefined characters into HTML entities
function d_htmlspecialchars($string) {
if(is_array($string)) {
foreach($string as $key => $ val) {
$string[$key] = d_htmlspecialchars($val);
}
} else {
$string = str_replace('&', '&', $string);
$string = str_replace('"', '"', $string);
$string = str_replace(''', ''', $string);
$string = str_replace('< ', '<', $string);
$string = str_replace('>', '>', $string);
$string = preg_replace('/&(#d;)/ ', '&1', $string);
}
return $string;
}
//Add a backslash before the predefined characters, including single quotes, double quotes, and backslashes bar, NULL to protect database security
function d_addslashes($string, $force = 0) {
if(!$GLOBALS['magic_quotes_gpc'] || $force) {
if(is_array($ string)) {
foreach($string as $key => $val) $string[$key] = d_addslashes($val, $force);
}
else $string = addslashes($ string);
}
return $string;
}
//Generate a random string, including uppercase, lowercase letters, numbers
function randstr($length) {
$hash = ''; $ CHARS = 'ABCDEFGHIJKLMNOPQRSNOPQRSTUVWXYZ0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'; d (dough) microtime () * 1000000);
for ($ i = 0; $i < $length; $i++) {
$hash .= $chars[mt_rand(0, $max)];
}
return $hash;
}
//Convert timestamp to common date format
function trans_time($timestamp){
if($timestamp < 1) echo 'Invalid Unix timestamp';
else return date("Y-m-d H:i:s",$timestamp);
}
//Get IP
function get_ip() {
if ($_SERVER["HTTP_X_FORWARDED_FOR"])
$ip = $ _SERVER["HTTP_X_FORWARDED_FOR"];
else if ($_SERVER["HTTP_CLIENT_IP"])
$ip = $_SERVER["HTTP_CLIENT_IP"];
else if ($_SERVER["REMOTE_ADDR"])
$ip = $_SERVER["REMOTE_ADDR"];
else if (getenv("HTTP_X_FORWARDED_FOR"))
$ip = getenv("HTTP_X_FORWARDED_FOR");
else if (getenv("HTTP_CLIENT_IP" ))
$ip = getenv("HTTP_CLIENT_IP");
else if (getenv("REMOTE_ADDR"))
$ip = getenv("REMOTE_ADDR");
else
$ip = "Unknown";
return $ip;
}
//Calculate time difference: the default return type is "minutes"
//$old_time can only be a timestamp, $return_type is h which is hour , for s is seconds
function timelag($old_time,$return_type='m'){
if($old_time < 1){
echo 'Invalid Unix timestamp';
} else{
switch($return_type){
case 'h':
$type = 3600; break;
case 'm':
$type = 60; break;
case 's':
$type = 1; break;
case '':
$type = 60; break;
}
$dif = round( (time()-$ old_time)/$type ) ;
return $dif;
}
}
//Get the URL address of the current page
function url_this(){
$url = "http: //".$_SERVER ["HTTP_HOST"].$_SERVER["REQUEST_URI"];
$return_url = "$url";
return $return_url;
}
//Jump function
function url_redirect($url,$delay=''){
if($delay == ''){
echo "< ;script>window.location.href='$url'";
}else{
echo "";
}
}
} //end func
?>

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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.

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

In this chapter, we are going to learn the following topics related to routing ?

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.

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
