current location:Home > Technical Articles > php教程

  • 电商网站使用支付宝转账付款功能代替支付宝支付接口
    电商网站使用支付宝转账付款功能代替支付宝支付接口
    现在支付宝商户对于商家接入支付宝即时到账接口管理比较严格,一般都是需要支付宝企业账户才能申请开通即时到账接口的。这对于大部分个人商家来说,无疑不利于快速回笼资金。本接口通过一个变通的方式,利用支付宝系统中的转账付款功能,来跟自己的商城实现对接,让客户在下单后直接跳转到支付宝的转账付款页面,通过转账付款的方式来给自己的支付宝账号付款。客户在转账付款界面无需自已填写订单相关信息,程
    php手册 2612 2017-03-27 15:24:03
  • php实现在线通讯录功能(附源码),通讯录源码
    php实现在线通讯录功能(附源码),通讯录源码
    php实现在线通讯录功能(附源码),通讯录源码。php实现在线通讯录功能(附源码),通讯录源码 本文实例为大家分享php在线通信录编写代码,供大家参考,具体内容如下 phpsession_start();
    php手册 7139 2017-03-25 10:36:22
  • PHP implements uploading files without page refresh
    PHP implements uploading files without page refresh
    PHP implements uploading files without page refresh
    PHP源码 2434 2017-03-24 15:27:27
  • Explore the problem that Laravel uses the env function to read environment variables that are null
    Explore the problem that Laravel uses the env function to read environment variables that are null
    Recently I encountered a problem at work. I don’t know if you have encountered it before. In Laravel (except in the configuration file under the app/config directory), you use the env function to read environment variables. Sometimes it works, and sometimes it returns null. What exactly is this? what happened? Let’s find out through this article. Friends in need, please come and take a look below.
    PHP开发 2880 2017-03-24 15:11:45
  • 介绍一个真正符合中国国情的工作流设计参考(包括PHP实现)
    介绍一个真正符合中国国情的工作流设计参考(包括PHP实现)
    开源的工作流很少有让人满意的,即便是国内用的比较多的jbpm,用起来也会觉得很便扭。再加上PHP中没有什么好用的工作流,于是干脆自己设计一个,设计的原则如下:1 根据80/20原则,只使用wfmc模型中最符合自身应用的20%功能2 充分吸收国内使用jbpm开发BOSS中遇到的问题,工作流引擎只负责参数的收集和流程的流转,具体和业务的控制,交给每个流程定制的控制类去实现。3 表单采用
    php手册 2549 2017-03-24 10:27:39
  • php使用memcoder将视频转成mp4格式的方法
    php使用memcoder将视频转成mp4格式的方法
    这篇文章主要介绍了php使用memcoder将视频转成mp4格式的方法,涉及php操作视频文件的技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    php手册 3622 2017-03-24 09:55:46
  • 初识通用数据库操作类前端easyui-datagrid,form(php),easyuidatagrid
    初识通用数据库操作类前端easyui-datagrid,form(php),easyuidatagrid
    初识通用数据库操作类——前端easyui-datagrid,form(php),easyuidatagrid。初识通用数据库操作类——前端easyui-datagrid,form(php),easyuidatagrid 初识通用数据库操作类——前端easyui-datagrid,form(php),实现代码比
    php手册 1294 2017-03-23 17:30:42
  • Linux system curl command
    Linux system curl command
    Linux system curl command
    PHP开发 2104 2017-03-23 15:25:50
  • PhpStorm usage notes (1)
    PhpStorm usage notes (1)
    As a PHPer, Hy369 has used several IDEs. The reason why I changed the IDE is because after using it for a long time, I always felt uncomfortable using it, so I wanted to try a new IDE. This problem no longer existed until I started using PhpStorm.
    PHP开发 1697 2017-03-23 11:07:41
  • php验证身份证号码正确性的函数
    php验证身份证号码正确性的函数
    这篇文章主要为大家分享了两段php验证身份证号码是否正确的函数,感兴趣的小伙伴们可以参考一下
    PHP源码 3196 2017-03-23 10:48:46
  • PHP 身份证号验证函数
    PHP 身份证号验证函数
    PHP 身份证号验证函数。
    php手册 1565 2017-03-23 10:48:42
  • php获取mysql数据库版本号 mysql_get_server_info
    php获取mysql数据库版本号 mysql_get_server_info
    php获取mysql数据库版本号 mysql_get_server_info
    PHP源码 2641 2017-03-23 10:22:37
  • PHP+jQuery实现翻板抽奖
    PHP+jQuery实现翻板抽奖
    在电视节目中有一种抽奖形式暂且叫做翻板抽奖,台上有一个墙面,墙面放置几个大方块,主持人或者抽奖者翻开对应的方块即可揭晓中奖结果。类似的抽奖形式还可以应用在WEB中,本文将使用PHP+jQuery为您讲解如何实现翻板抽奖程序。 翻板抽奖的实现流程:前端页
    php手册 1512 2017-03-23 09:54:47
  • 一个高效的敏感词过滤方法(PHP)
    一个高效的敏感词过滤方法(PHP)
    一个高效的敏感词过滤方法(PHP) 无 $badword = array( '张三','张三丰','张三丰田');$badword1 = array_combine($badword,array_fill(0,count($badword),'*'));$bb = '我今天开着张三丰田上班';$str = strtr($bb, $badword1);echo $str; $hei=array('中国','
    php手册 8236 2017-03-22 14:29:20
  • Use PHP extension trie_filter to filter Chinese sensitive words
    Use PHP extension trie_filter to filter Chinese sensitive words
    Use PHP extension trie_filter to filter Chinese sensitive words
    PHP开发 2717 2017-03-22 14:29:13

Tool Recommendations

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 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 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 is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29

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
backend template
2023-02-02

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
Bootstrap template
2023-02-02

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)

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)

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)

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 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 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 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

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