09 2020 档案
摘要:<!DOCTYPE html> <html lang=""> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="widt
阅读全文
摘要:优点 减少了出现行移动或者数据页分裂时二级索引的维护工作(当数据需要更新的时候,二级索引不需要修改,只需要修改聚簇索引,一个表只能有一个聚簇索引,其他的都是二级索引,这样只需要修改聚簇索引就可以了,不需要重新构建二级索引) 缺点 二级索引体积可能会变大,因为二级索引中存储了主键的信息 二级索引的访问
阅读全文
摘要:style="cursor:pointer;" οnclick=""
阅读全文
摘要:function emoji2str($str){ $strEncode = ''; $length = mb_strlen($str,'utf-8'); for ($i=0; $i < $length; $i++) { $_tmpStr = mb_substr($str,$i,1,'utf-8')
阅读全文
摘要:<?php $html = file_get_contents('http://www.runoob.com'); $dom = new DOMDocument(); @$dom->loadHTML($html); // grab all the on the page $xpath = new D
阅读全文
摘要:const request = require('request') const readline = require('readline'); var path = require('path'); const fs = require('fs') const r1 = readline.crea
阅读全文
摘要:https://segmentfault.com/a/1190000013666402 1. 基本流程 串行流程、并行流程、混合执行series, waterfall; parallel, parallelLimit; auto; 1.1. 串行流程 1.1.1. series(多个函数依次执行,之
阅读全文
摘要:function getData(callback){ setTimeout(function(){ var name = 'xxxx'; callback(name); }, 1000); } // 外部获取异步方法里面的数据 采用回调函数的方式 getData(function(data){ c
阅读全文
摘要:https://blog.csdn.net/qq_37026254/article/details/94396320?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_
阅读全文
摘要:<!DOCTYPE html> <html lang=""> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="widt
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>截图</title> <style> </style> </head> <style> div { width: 300px; height: 300px; m
阅读全文
摘要:截图 Hover me 传送门 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>截图</title> <style> </style> </head> <style> button { border: 0;
阅读全文