1.一些有用的函数 htmlspecialchars — 将特殊字符转换为 HTML 实体 htmlspecialchars ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = ini_get ...
分类:
Web程序 时间:
2020-02-13 15:14:03
阅读次数:
92
You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k. Define a pair (u,v) which consists of one element from th ...
分类:
其他好文 时间:
2020-02-13 13:22:48
阅读次数:
67
在连接Linux服务器进行工作的时候,常常有一个需求,就是自己的连接断了之后, 不中断,下一次还能连接到自己的程序上。以前使用的是screen,现在发现有一个类似的工具也可以使用,可能更好用 创建一个session tmux [new -s 会话名 -n 窗口名] 这样就创建了一个会话,可以在会话里 ...
分类:
其他好文 时间:
2020-02-13 00:25:23
阅读次数:
92
An ascending sorted sequence of distinct values is one in which some form of a less-than operator is used to order the elements from smallest to large ...
分类:
其他好文 时间:
2020-02-12 18:29:23
阅读次数:
62
1.字符集 === ASCII码 一字节;包括英文数字这些符号 GB2312编码 汉字为两字节;与ASCII码兼容,后来扩展汉字又有了GBK编码 Unicode编码 包括中,日,韩,英文等格式;有Utf 32,Utf 16,Utf 8三种格式 Utf 32:每个字符都采用4字节(32bit),缺点浪 ...
分类:
其他好文 时间:
2020-02-11 00:10:05
阅读次数:
176
点击某按钮,提示某信息,相信大家经常遇到,用别人的插件总需要修改点,但是修改起来又很费时间,所以干脆自己写吧,哈哈。代码及效果如下:<!DOCTYPEhtml><html><head><metacharset="utf-8"><title>信息提示框</title><style>#full_screen_div{p
分类:
其他好文 时间:
2020-02-09 00:40:22
阅读次数:
101
<link rel="stylesheet" href="./style320.css" media="screen and (min-width:320px)"/> <link rel="stylesheet" href="./style640.css" media="screen and (mi ...
分类:
其他好文 时间:
2020-02-06 23:10:26
阅读次数:
72
Given a binary tree rooted at root, the depth of each node is the shortest distance to the root. A node is deepest if it has the largest depth possibl ...
分类:
其他好文 时间:
2020-02-06 11:07:31
阅读次数:
74
通过 PHP 的GD库创建一个简单的图片 1、效果图 2、代码 <?php // PHP 使用 GD 拓展库制作图像 // 指定输出为 JPEG 图片 header('Content-type:image/jpeg'); // 1、创建图像 // imagecreatetruecolor($widt ...
分类:
Web程序 时间:
2020-02-04 17:12:48
阅读次数:
93