12 2020 档案
摘要:使用composer安装barryvdh/laravel-ide-helper $ composer require barryvdh/laravel-ide-helper # Then add to config/app Barryvdh\LaravelIdeHelper\IdeHelperSer
阅读全文
摘要:php-redis代码库和文档地址:https://github.com/phpredis/phpredis/#readme string 字符串类型: <?php redis->connect("127.0.0.1", 6379); $redis->a
阅读全文
摘要:这是尾插法单链表,单链表比较适合用来做队列和栈,因为在链表的头和尾时的增删改查的时间复杂度为O(1),而在链表内部的增删改查的平均时间复杂度为O(n)。 #include "stdio.h" #include "stdlib.h" //提供malloc()和free() #include "stri
阅读全文
摘要:js关键函数:slice() <!DOCTYPE html> <html lang="en"> <head> <title></title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initi
阅读全文
摘要:php 压缩字符串函数:gzcompress() php解压字符串函数:gzuncompress() 效果图: 代码: <?php $str = "司马法曰:“国虽大,好战必亡;天下虽平,忘战必危。”司马法曰:“国虽大,好战必亡;天下虽平,忘战必危。”司马法曰:“国虽大,好战必亡;天下虽平,忘战必危
阅读全文