难度1-Low 查看代码: <?php // Is there any input? if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) { // Feedback for end user echo '<pre>He ...
分类:
其他好文 时间:
2021-01-29 11:44:05
阅读次数:
0
lcfirst () 使一个字符串的第一个字符小写 lcfirst ( string $str ) : string 参数描述 str必需。规定要转换的字符串。 返回值: 返回第一个字母小写的 str 字符串,如果是字母的话。 实例: echo lcfirst('Hello World'); //h ...
分类:
Web程序 时间:
2021-01-25 11:06:24
阅读次数:
0
ucwords () 函数把字符串中每个单词的首字符转换为大写。 ucwords ( string $str ) : string 参数描述 str必需。规定要转换的字符串。 返回值: 返回把字符串中每个单词的首字符转换为大写。 实例: echo ucwords("hello world!"); / ...
分类:
Web程序 时间:
2021-01-22 12:26:13
阅读次数:
0
Charles 安装 官方下载地址 66 windows:官网下载并按照步骤一步步安装即可 Mac:官网下载并按照步骤一步步安装即可 Linux: wget -q -O - https://www.charlesproxy.com/packages/apt/PublicKey | sudo apt- ...
分类:
其他好文 时间:
2021-01-22 12:10:38
阅读次数:
0
文件權限 什么是文件权限: 我们对当前文件可以干什么 看 写入 删除 执行 root 拥有最高执行权限 一个权限可以控制它 普通文件的默认权限 我们创建 vim touch echo后默认的权限 rw-r--r-- r 4 read 读取文件 cat less more vim sed w 2 wr ...
分类:
系统相关 时间:
2021-01-21 10:55:18
阅读次数:
0
mysqldump命令 @echo off set "dateYmds=%date:~,4%%date:~5,2%%date:~8,2%" echo "%dateYmd%" "C:\Program Files\MySQL\MySQL Server 5.6\bin\mysqldump.exe" -uu ...
分类:
数据库 时间:
2021-01-20 12:17:17
阅读次数:
0
安装mysql 使用rpm包安装 yum remove mariadb-libs.x86_64 yum install perl rpm -ivh mysql-community-common-5.7.31-1.el7.x86_64.rpm rpm -ivh mysql-community-libs ...
分类:
数据库 时间:
2021-01-19 11:40:29
阅读次数:
0
1、文件类 > 输出重定向 >> 输出追加 ls -l > out.txt 原来out.txt内容会被覆盖,下面的是追加 ls -l >> out.txt echo $PATH 输出内容到控制台 head -n 5 output.txttail -n 5 output.txt // 输出文件尾部5行 ...
分类:
其他好文 时间:
2021-01-18 11:20:11
阅读次数:
0
为当前用户配置:在家目录下的.vimrc文件中添加 [root@localhost ~]# echo "colorscheme desert" > .vimrc 为所有用户配置:在/etc/vimrc末尾追加, [root@localhost ~]# echo "colorscheme desert ...
分类:
系统相关 时间:
2021-01-16 12:13:24
阅读次数:
0
第一种方法: $sudo su #echo "209.85.228.22 dl-ssl.google.com">> /etc/hosts #echo "209.85.228.22 dl.google.com">>/etc/hosts 查看添加成功 #cat /etc/hosts 第二种方法: # 修 ...
分类:
系统相关 时间:
2021-01-15 11:52:23
阅读次数:
0