10 2022 档案
摘要:转自 https://www.cnblogs.com/zhishu/p/16596451.html
阅读全文
摘要:condition_1 XOR condition_2 1和2只能满足一个 ,一个真一个假
阅读全文
摘要:查询时会将字符串转数字.如果转换数字不成功,则看做0 两边都是字符串的话,则按照ANSI的比较规则进行比较,不区分大小写(具体看mysql配置)
阅读全文
摘要:1.pecl下载对应PHP版本下的压缩包 2.解压后,将php_vld.dll放入PHP扩展目录 3.重启apache和nginx,查看phpinfo
阅读全文
摘要:mysql -h localhost -u root -p -P3306 mysql -h localhost -u root -p -P3307 要看mysql-server的端口
阅读全文
摘要:转自:https://blog.csdn.net/qq_39390545/article/details/106414765 SELECT * from table where username like '%陈哈哈%' and hobby like '%牛逼'这是一条我们在MySQL中常用到的模糊
阅读全文
摘要:转自:https://www.php.cn/topic/php8/491330.html
阅读全文
摘要:1.Scanning(Lexing) ,将PHP代码转换为语言片段(Tokens) 2.Parsing, 将Tokens转换成简单而有意义的表达式 3.Compilation, 将表达式编译成Opocdes 4.Execution, 顺次执行Opcodes,每次一条,从而实现PHP脚本的功能。总结:
阅读全文