摘要:
update mytest inner join(select '2' as id, sleep(5)) a on mytest.id=a.id set mytest.name='xiaowang'; 阅读全文
摘要:
#!/bin/bash # # Author: yeho # Blog: https://blog.linuxeye.com # # Installs a PPTP VPN-only system for CentOS # Check if user is root [ $(id -u) != "0" ] && { echo -e "\033[31mError: You must be ... 阅读全文
摘要:
1.生存私钥 openssl genrsa -des3 -out private_key.pem 1024 2.生成公钥 openssl rsa -in private_key.pem -pubout -out public_key.pem 阅读全文
摘要:
key = $key; } else { throw new Exception('The only supported ciphers are AES-256-CBC with the correct key lengths.'); } } public function encrypt($value) { ... 阅读全文
摘要:
例如我的eth0网卡信息如下 现在我想把我的本地IP固定成192.168.79.133(用虚拟机的童鞋都知道,IP老是变化好麻烦) 1.查看网关地址,我的是192.168.79.2 2.查看DNS,我的是192.168.79.2 3.配置网卡信息,我的是 vim /etc/sysconfig/net 阅读全文
摘要:
输出结果:230 分析,switch先匹配一个case满足$a,然后执行case里面的语句,直到遇到break,否则一直往下执行 阅读全文
摘要:
version:5.6.21 file:Zend/zend_compile.c line:7055-7152 解析 该函数是在语法解析的时候,编译器扫描到namespace xxx;namespace xxx{};namespace {};三种形式的时候调用 zend_do_begin_namesp 阅读全文
摘要:
逆波兰记号计算器【文件名rpcalc.y】%{ #define YYSTYPE double #include #include #include int yylex (void); void yyerror (char const *); %} %token NUM %% input: /* empty */ | input line ; line: ... 阅读全文
摘要:
'./configure' '--prefix=/usr/local/php5.6.21' '--with-config-file-path=/usr/local/php5.6.21/etc' '--with-mysql=/usr/local/mysql' '--with-mysqli=/usr/l 阅读全文
摘要:
编译,运行,结果 [root@bhu les5]# re2c -o demo.c -c -t demo_def.h demo.l [root@bhu les5]# gcc -o demo demo.c -g [root@bhu les5]# ./demo "<?php 3ee344SDEFeee@# 阅读全文