current location:Home>Technical Articles>php教程>PHP源码

  • 正则表达式基本函数 修饰符 元字符和需转义字
    正则表达式基本函数 修饰符 元字符和需转义字
    ec(2); 在php教程正则表达式中需要转义的字符如下: $^*()+={}[]|/:.?'" 注意:perl风格中表达式要求以/开始和结尾,如:/food/ 表匹配字符 food perl修饰符如下: i 完成不区分大小写的搜索 g 查找所有出现(all occurrences,完成全局搜索) m 将一个字符串视为多行(m就表示多(multiple))。默
    PHP源码 1377 2016-06-08 17:26:33
  • php 采集远程图片(可采集防盗链)
    php 采集远程图片(可采集防盗链)
    ec(2); //变量说明: // $url 是远程图片的完整url地址,不能为空。 // $filename www.111cn.net是可选变量: 如果为空,本地文件名将基于时间和日期 // 自动生成. 代码如下 复制代码
    PHP源码 1164 2016-06-08 17:26:33
  • file file_get_contents HTTP request failed
    file file_get_contents HTTP request failed
    ec(2); /* 我有一个问题,要求从php教程代码的url。我需要调用一个服务,使用从我的php代码的查询字符串。如果我的浏览器中键入一个网址,它工作还算可以,但如果我使用文件获取,内容()来拨打电话,我得到: 代码如下 复制代码 $query=file_get_contents('http://www.111cn.net'); ec
    PHP源码 1155 2016-06-08 17:26:33
  • php中文用户名验证代码
    php中文用户名验证代码
    ec(2); php教程中文用户名验证代码 //php $val = "工作队"; if(preg_match("/^[x80-xff]{4,16}$", $val)) { return true; } &nbs
    PHP源码 1105 2016-06-08 17:26:32
  • php域名匹配正则表达式代码
    php域名匹配正则表达式代码
    ec(2); 代码如下 复制代码 function matchdomain($q){ preg_match('/(([a-z0-9](w|-){0,61}?[a-z0-9]|[a-z0-9]).){1,}(aero|arpa|asia|biz|cat|com|coop|co|edu|gov|info|int|jobs|mil|mobi|mu
    PHP源码 1666 2016-06-08 17:26:32
  • php缓存技术原理详细说明与实例(1/15)
    php缓存技术原理详细说明与实例(1/15)
    ec(2); 缓存技术: 有些信息比方经常不变的,但是还是能变的信息放在缓存中以加快显示速度,这是很有价值的,所谓的缓存,通俗的理解就是一些保存在服务器端的共用信息.它是于服务器同生死的,我们在保存缓存的时候可以指定下次更新的时间的判断,比方要在5分钟更新一次,可以记录上次更新的时间,和当前时间比较,如果大于 5 分钟 ,读取数据库教程,更新换成,否则
    PHP源码 1095 2016-06-08 17:26:31
  • 判断某数组当中是否含有某字符或字符串的函数in_array
    判断某数组当中是否含有某字符或字符串的函数in_array
    ec(2); 代码如下 复制代码 $arr_1=array( "index/logo.png", "w
    PHP源码 1190 2016-06-08 17:26:31
  • php如何获取域名IP地址代码函数
    php如何获取域名IP地址代码函数
    ec(2); 代码如下 复制代码 $dm = 'www.111cn.net'; $ip = gethostbyname($dm); echo gethostbyaddr($ip); echo $ip; //两个输出结果是一样的, /* 关于 gethostbyname语法 string gethostbyname ( stri
    PHP源码 1338 2016-06-08 17:26:31
  • php正则内容中所有图片及图片地址
    php正则内容中所有图片及图片地址
    ec(2); 代码如下 复制代码 //方法一 $body =''; preg_match_al
    PHP源码 1340 2016-06-08 17:26:29
  • 几种获取html字符串中所有a链接地址代码
    几种获取html字符串中所有a链接地址代码
    ec(2); 代码如下 复制代码 $ss = "dadfxxdir"; print_r(gethref($ss));
    PHP源码 1748 2016-06-08 17:26:28
  • php正则判断中文字符
    php正则判断中文字符
    php正则判断中文字符
    PHP源码 1135 2016-06-08 17:26:28
  • PHP面向对象:使用接口与组合模拟多继承(1/2)
    PHP面向对象:使用接口与组合模拟多继承(1/2)
    ec(2); 在php中不支持多重继承,如果我们向使用多个类的方法而实现代码重用有什么办法么?那就是组合。在一个类中去将另外一个类设置成属性。 下面的例子,模拟了多重继承。 view sourceprint?01
    PHP源码 1129 2016-06-08 17:26:28
  • php url,日期,ip,邮箱地址检测类代码
    php url,日期,ip,邮箱地址检测类代码
    本文章提供的确款正则表达式来检测url地址,日期格式,ip地址,与邮箱地址是否合法的验证代码,希望本文章对各位同学会带来帮助。
    PHP源码 1270 2016-06-08 17:26:28
  • php 带条件查询 分页代码
    php 带条件查询 分页代码
    ec(2); 代码如下 复制代码 if(!isset($_get[absolutepage])){ $absolutepage=1;//当前页 }
    PHP源码 1467 2016-06-08 17:26:27
  • php 模拟用户POST GET源代码
    php 模拟用户POST GET源代码
    下面的代码使用两种方式来调facebook的接口,第一种县判断用户的环境是否开启了curl库,开启了这个库,就采用这种方式来获取请求。里面详细的参数讲解大家可以参考手册。
    PHP源码 1612 2016-06-08 17:26:27

Tool Recommendations

jQuery enterprise message form contact code

jQuery enterprise message form contact code

jQuery enterprise message form contact code is a simple and practical enterprise message form and contact us introduction page code.
form button
2024-02-29
HTML5 MP3 music box playback effects

HTML5 MP3 music box playback effects

HTML5 MP3 music box playback special effect is an mp3 music player based on HTML5 css3 to create cute music box emoticons and click the switch button.
HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effect is a special effect that changes color when the navigation menu is hovered by the mouse.
Menu navigation
2024-02-29
jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29
Organic fruit and vegetable supplier web template Bootstrap5

Organic fruit and vegetable supplier web template Bootstrap5

An organic fruit and vegetable supplier web template-Bootstrap5
Bootstrap template
2023-02-03
Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus
backend template
2023-02-02
Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5
Bootstrap template
2023-02-02
Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4
Bootstrap template
2023-02-02
Cute summer elements vector material (EPS PNG)

Cute summer elements vector material (EPS PNG)

This is a cute summer element vector material, including the sun, sun hat, coconut tree, bikini, airplane, watermelon, ice cream, ice cream, cold drink, swimming ring, flip-flops, pineapple, conch, shell, starfish, crab, Lemons, sunscreen, sunglasses, etc., the materials are provided in EPS and PNG formats, including JPG previews.
PNG material
2024-05-09
Four red 2023 graduation badges vector material (AI EPS PNG)

Four red 2023 graduation badges vector material (AI EPS PNG)

This is a red 2023 graduation badge vector material, four in total, available in AI, EPS and PNG formats, including JPG preview.
PNG material
2024-02-29
Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

This is a spring banner vector material designed with singing birds and a cart full of flowers. It is available in AI and EPS formats, including JPG preview.
banner picture
2024-02-29
Golden graduation cap vector material (EPS PNG)

Golden graduation cap vector material (EPS PNG)

This is a golden graduation cap vector material, available in EPS and PNG formats, including JPG preview.
PNG material
2024-02-27
Home Decor Cleaning and Repair Service Company Website Template

Home Decor Cleaning and Repair Service Company Website Template

Home Decoration Cleaning and Maintenance Service Company Website Template is a website template download suitable for promotional websites that provide home decoration, cleaning, maintenance and other service organizations. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-05-09
Fresh color personal resume guide page template

Fresh color personal resume guide page template

Fresh color matching personal job application resume guide page template is a personal job search resume work display guide page web template download suitable for fresh color matching style. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-29
Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template is a downloadable web template for personal job resume display suitable for various designer positions. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28
Modern engineering construction company website template

Modern engineering construction company website template

The modern engineering and construction company website template is a downloadable website template suitable for promotion of the engineering and construction service industry. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!