前端开发2023年05月04日
前面AJAX及后端PHP处理的代码,其中包含了加载样式的loading效果及禁用按钮功能。function showshibie(){ zc_code=$("#zc_code").val() if (zc_code==...
前端开发2023年05月02日
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>ajax长轮询和短轮询</title&...
后端开发2020年06月08日
use关键字在php中的使用1、use最常用在给类取别名,还可以用在闭包函数中<?php function test() { $a = 'hello'; return function ($a)use($a) { echo $a . $a; }; } $b = test(); $b('world');//结果是hello...
后端开发2020年05月29日
本文实例讲述了php实现的证件照换底色功能。分享给大家供大家参考,具体如下:<?php //背景图和原图需要保持宽高要保持一样,这里的示例原图用的是蓝色背景 init(); function init(){ $old = '1.png'; $new = '2.png'; //创建一个png透明图 $img = image...