search
HomeBackend DevelopmentPHP TutorialA must-have for developers, super practical PHP code snippets! _PHP Tutorial

此前,研发频道曾发布《直接拿来用,10个PHP代码片段》,得到了网友们的一致好评。本文,笔者将继续分享九个超级有用的PHP代码片段。当你在开发网站、应用或者博客时,利用这些代码能为你节省大量的时间。

 

 

一、查看邮件是否已被阅读

 

当你在发送邮件时,你或许很想知道该邮件是否被对方已阅读。这里有段非常有趣的代码片段能够显示对方IP地址记录阅读的实际日期和时间。 

<?
error_reporting(0);
Header("Content-Type: image/jpeg");

//Get IP
if (!empty($_SERVER[&#39;HTTP_CLIENT_IP&#39;]))
{
  $ip=$_SERVER[&#39;HTTP_CLIENT_IP&#39;];
}
elseif (!empty($_SERVER[&#39;HTTP_X_FORWARDED_FOR&#39;]))
{
  $ip=$_SERVER[&#39;HTTP_X_FORWARDED_FOR&#39;];
}
else
{
  $ip=$_SERVER[&#39;REMOTE_ADDR&#39;];
}

//Time
$actual_time = time();
$actual_day = date(&#39;Y.m.d&#39;, $actual_time);
$actual_day_chart = date(&#39;d/m/y&#39;, $actual_time);
$actual_hour = date(&#39;H:i:s&#39;, $actual_time);

//GET Browser
$browser = $_SERVER[&#39;HTTP_USER_AGENT&#39;];
    
//LOG
$myFile = "log.txt";
$fh = fopen($myFile, &#39;a+&#39;);
$stringData = $actual_day . &#39; &#39; . $actual_hour . &#39; &#39; . $ip . &#39; &#39; . $browser . &#39; &#39; . "\r\n";
fwrite($fh, $stringData);
fclose($fh);

//Generate Image (Es. dimesion is 1x1)
$newimage = ImageCreate(1,1);
$grigio = ImageColorAllocate($newimage,255,255,255);
ImageJPEG($newimage);
ImageDestroy($newimage);
    
?>
源码

 

二、从网页中提取关键字

 

一段伟大的代码片段能够轻松的从网页中提取关键字。

$meta = get_meta_tags(&#39;http://www.emoticode.net/&#39;);
$keywords = $meta[&#39;keywords&#39;];
// Split keywords
$keywords = explode(&#39;,&#39;, $keywords );
// Trim them
$keywords = array_map( &#39;trim&#39;, $keywords );
// Remove empty values
$keywords = array_filter( $keywords );

print_r( $keywords );
源码

 

三、查找页面上的所有链接

使用DOM,你可以轻松从任何页面上抓取链接,代码示例如下: 

 

$html = file_get_contents(&#39;http://www.bkjia.com&#39;);

$dom = new DOMDocument();
@$dom->loadHTML($html);

// grab all the on the page
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");

for ($i = 0; $i < $hrefs->length; $i++) {
       $href = $hrefs->item($i);
       $url = $href->getAttribute(&#39;href&#39;);
       echo $url.&#39;<br />&#39;;
}
源码

 

四、自动转换URL,跳转至超链接

在WordPress中,如果你想自动转换URL,跳转至超链接页面,你可以利用内置的函数make_clickable()执行此操作。如果你想基于WordPress之外操作该程序,那么你可以参考wp-includes/formatting.php源代码。 

 

function _make_url_clickable_cb($matches) {
    $ret = &#39;&#39;;
    $url = $matches[2];
 
    if ( empty($url) )
        return $matches[0];
    // removed trailing [.,;:] from URL
    if ( in_array(substr($url, -1), array(&#39;.&#39;, &#39;,&#39;, &#39;;&#39;, &#39;:&#39;)) === true ) {
        $ret = substr($url, -1);
        $url = substr($url, 0, strlen($url)-1);
    }
    return $matches[1] . "<a href=\"$url\" rel=\"nofollow\">$url</a>" . $ret;
}
 
function _make_web_ftp_clickable_cb($matches) {
    $ret = &#39;&#39;;
    $dest = $matches[2];
    $dest = &#39;http://&#39; . $dest;
 
    if ( empty($dest) )
        return $matches[0];
    // removed trailing [,;:] from URL
    if ( in_array(substr($dest, -1), array(&#39;.&#39;, &#39;,&#39;, &#39;;&#39;, &#39;:&#39;)) === true ) {
        $ret = substr($dest, -1);
        $dest = substr($dest, 0, strlen($dest)-1);
    }
    return $matches[1] . "<a href=\"$dest\" rel=\"nofollow\">$dest</a>" . $ret;
}
 
function _make_email_clickable_cb($matches) {
    $email = $matches[2] . &#39;@&#39; . $matches[3];
    return $matches[1] . "<a href=\"mailto:$email\">$email</a>";
}
 
function make_clickable($ret) {
    $ret = &#39; &#39; . $ret;
    // in testing, using arrays here was found to be faster
    $ret = preg_replace_callback(&#39;#([\s>])([\w]+?://[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is&#39;, &#39;_make_url_clickable_cb&#39;, $ret);
    $ret = preg_replace_callback(&#39;#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is&#39;, &#39;_make_web_ftp_clickable_cb&#39;, $ret);
    $ret = preg_replace_callback(&#39;#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i&#39;, &#39;_make_email_clickable_cb&#39;, $ret);
 
    // this one is not in an array because we need it to run last, for cleanup of accidental links within links
    $ret = preg_replace("#(<a( [^>]+?>|>))<a [^>]+?>([^>]+?)</a></a>#i", "$1$3</a>", $ret);
    $ret = trim($ret);
    return $ret;
}
源码

 

五、创建数据URL

数据URL可以直接嵌入到HTML/CSS/JS中,以节省大量的 HTTP请求。 下面的这段代码可利用$file轻松创建数据URL。 

 

function data_uri($file, $mime) {
  $contents=file_get_contents($file);
  $base64=base64_encode($contents);
  echo "data:$mime;base64,$base64";
}
源码

 

六、从服务器上下载&保存一个远程图片 

当你在搭建网站时,从远程服务器下载某张图片并且将其保存在自己的服务器上,这一操作会经常用到。代码如下:

 

$image = file_get_contents(&#39;http://www.bkjia.com/image.jpg&#39;);
file_put_contents(&#39;/images/image.jpg&#39;, $image);//Where to save the image
源码

 

七、移除Remove Microsoft Word HTML Tag

当你使用Microsoft Word会创建许多Tag,比如font,span,style,class等。这些标签对于Word本身而言是非常有用的,但是当你从Word粘贴至网页时,你会发现很多无用的Tag。因此,下面的这段代码可帮助你删除所有无用的Word HTML Tag。 

 

function cleanHTML($html) {
/// <summary>
/// Removes all FONT and SPAN tags, and all Class and Style attributes.
/// Designed to get rid of non-standard Microsoft Word HTML tags.
/// </summary>
// start by completely removing all unwanted tags

$html = ereg_replace("<(/)?(font|span|del|ins)[^>]*>","",$html);

// then run another pass over the html (twice), removing unwanted attributes

$html = ereg_replace("<([^>]*)(class|lang|style|size|face)=("[^"]*"|&#39;[^&#39;]*&#39;|[^>]+)([^>]*)>","<\1>",$html);
$html = ereg_replace("<([^>]*)(class|lang|style|size|face)=("[^"]*"|&#39;[^&#39;]*&#39;|[^>]+)([^>]*)>","<\1>",$html);

return $html
}
源码

 

八、检测浏览器语言

如果你的网站上有多种语言,那么可以使用这段代码作为默认的语言来检测浏览器语言。该段代码将返回浏览器客户端使用的初始语言。 

 

function get_client_language($availableLanguages, $default=&#39;en&#39;){
    if (isset($_SERVER[&#39;HTTP_ACCEPT_LANGUAGE&#39;])) {
        $langs=explode(&#39;,&#39;,$_SERVER[&#39;HTTP_ACCEPT_LANGUAGE&#39;]);

        foreach ($langs as $value){
            $choice=substr($value,0,2);
            if(in_array($choice, $availableLanguages)){
                return $choice;
            }
        }
    }
    return $default;
}
源码

 

九、显示Facebook 粉丝数量

如果你的网站或者博客上有内链的Facebook页面,你或许想知道拥有多少粉丝。这段代码将帮助你查看Facebook粉丝数,记住,别忘了在你的页面ID第二行添加该段代码。 

 

<?php
    $page_id = "YOUR PAGE-ID";
    $xml = @simplexml_load_file("http://api.facebook.com/restserver.php?method=facebook.fql.query&query=SELECT%20fan_count%20FROM%20page%20WHERE%20page_id=".$page_id."") or die ("a lot");
    $fans = $xml->page->fan_count;
    echo $fans;
?>
源码

 

英文出自: Catswhocode


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/625805.htmlTechArticle此前,研发频道曾发布《直接拿来用,10个PHP代码片段》,得到了网友们的一致好评。本文,笔者将继续分享九个超级有用的PHP代码片段。当...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
天猫精灵云云接入服务升级:免费开发者收费天猫精灵云云接入服务升级:免费开发者收费Jan 09, 2024 pm 10:06 PM

本站1月9日消息,天猫精灵日前发布云云接入服务升级的公告,升级后的云云接入服务从1月1日起从免费模式变更为付费。本站附新增功能和优化:优化云端协议,提升设备连接的稳定性;优化重点品类的语音控制;账号授权升级:新增天猫精灵中开发者三方App的展示功能,帮助用户更快更方便进行账号绑定,同时新增开发者三方App账号授权支持一键绑定天猫精灵账号;新增终端屏显交互能力,除语音交互外,用户可通过app、带屏音箱控制设备、获取设备状态;新增智能场景联动能力,新建产品的属性、事件,可作为状态或事件上报,定义天猫

为拯救童年回忆,开发者决定采用古法编程:用Flash高清重制了一款游戏为拯救童年回忆,开发者决定采用古法编程:用Flash高清重制了一款游戏Apr 11, 2023 pm 10:16 PM

两年多前,Adobe 发布了一则引人关注的公告 —— 将在 2020 年 12 月 31 日终止支持 Flash,宣告了一个时代的结束。一晃两年过去了,Adobe 早已从官方网站中删除了 Flash Player 早期版本的所有存档,并阻止基于 Flash 的内容运行。微软也已经终止对 Adobe Flash Player 的支持,并禁止其在任何 Microsoft 浏览器上运行。Adobe Flash Player 组件于 2021 年 7 月通过 Windows 更新永久删除。当 Flash

PHP 8.3:开发者必知的重要更新PHP 8.3:开发者必知的重要更新Nov 27, 2023 am 10:19 AM

PHP是一种开源的服务器端编程语言,是Web应用程序开发中最流行的语言之一。随着技术的不断发展,PHP也在不断更新和改进。最新的PHP版本是8.3,这个版本带来了一些重要的更新和改进,本文将介绍一些开发者必知的重要更新。类型和属性改进PHP8.3引入了一些对类型和属性的改进,其中最受欢迎的是在类型声明中引入了新的union类型。Union类型允许函数的参数

战胜选择困难症:五个令你眼花缭乱的kafka可视化工具,助力开发者解放战胜选择困难症:五个令你眼花缭乱的kafka可视化工具,助力开发者解放Jan 05, 2024 pm 07:43 PM

解放开发者的选择困难症:五个让你眼花缭乱的kafka可视化工具引言:Kafka是一种高性能、分布式的流数据平台,被广泛应用于构建实时数据管道和流处理应用。作为开发者,处理Kafka中的消息队列是一项关键任务。然而,直接通过命令行或API来操作Kafka可能会令开发者感到繁琐,因此,为了方便开发者管理和监控Kafka,出现了各种可视化工具。本文将介绍五个引人注

Golang:AI 开发者的首选Golang:AI 开发者的首选Sep 09, 2023 pm 12:10 PM

Golang:AI开发者的首选摘要:人工智能(ArtificialIntelligence,AI)正逐渐成为我们日常生活中不可或缺的一部分。AI技术的快速发展使得越来越多的开发者开始探索如何利用AI来解决各种问题。而在AI开发中,选择合适的编程语言尤为重要。在众多编程语言中,Golang(又称Go)因其独特的优势而成为越来越多AI开发者的

Webman:一个开发者的完美伙伴Webman:一个开发者的完美伙伴Aug 13, 2023 pm 02:25 PM

Webman:一个开发者的完美伙伴随着互联网的发展,Web开发已经成为了一个非常重要的领域。在这个领域,开发者需要掌握多种技术和工具来构建高效、可靠的Web应用程序。而作为一个开发者的完美伙伴,Webman提供了许多有用的功能和工具,极大地简化了开发过程,并提高了效率。Webman是一个基于Python语言的Web开发框架,它结合了许多常用的工具和库,给开发

Canvas的独特之处:为何成为开发者的首选?Canvas的独特之处:为何成为开发者的首选?Jan 07, 2024 am 11:02 AM

Canvas的独特之处:为何成为开发者的首选?随着技术的不断发展,开发者们在构建丰富、交互性强的Web应用程序时,面临了越来越多的选择。其中,HTML5的Canvas元素因其强大的绘图功能,成为众多开发者的首选工具。Canvas是HTML5中新增的一个元素,它提供了一种面向像素的绘图环境。与传统的基于DOM的方法相比,Canvas使用JavaScript绘制

Go语言的跨平台能力为开发者带来了哪些好处和机会Go语言的跨平台能力为开发者带来了哪些好处和机会Jul 04, 2023 pm 11:45 PM

Go语言的跨平台能力为开发者带来了哪些好处和机会随着各种操作系统和平台的出现,开发者在选择编程语言时需要考虑跨平台能力。而Go语言作为一门现代化的编程语言,以其出色的跨平台能力而备受开发者的青睐。本文将探讨Go语言的跨平台能力带来的好处和机会。跨平台开发的好处Go语言的跨平台能力意味着开发者可以采用一套代码同时运行在不同的操作系统和平台上,大大降低了开发和维

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.