上一页 1 2 3 4 5 6 7 8 9 10 ··· 43 下一页
摘要: hyperf框架的orm其实就是基于laravel改造的。会laravel就会hyperf,只不过目前为止hyperf的文档都没有填充相关的。 生成迁移文件,这点文档有,具体可以参考文档 https://hyperf.wiki/3.1/#/zh-cn/db/migration php bin/hyp 阅读全文
posted @ 2024-09-28 17:55 朝阳1 阅读(35) 评论(0) 推荐(0) 编辑
摘要: + func main() { s1 := "hello" s2 := "word" s3 := s1 + s2 fmt.Print(s3) //s3 = "helloword" } sprintf s1 := "hello" s2 := "word" s3 := fmt.Sprintf("%s%s 阅读全文
posted @ 2024-09-28 11:40 朝阳1 阅读(4) 评论(0) 推荐(0) 编辑
摘要: win环境下,如果是linux,切换目录,用sh脚本就行 kafka安装在上一篇 https://www.cnblogs.com/qcy-blog/p/18428599 Kraft启动kafka kafka-server-start.bat ..\..\config\kraft\server.pro 阅读全文
posted @ 2024-09-26 11:01 朝阳1 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 新版本支持kraft,并且在后面会彻底抛弃zookeeper 二进制包地址 https://downloads.apache.org/kafka/ 解压之后,编辑config/kraft/server.properties文件,改成自己的ip 在Kafka安装目录的bin文件夹下执行以下命令生成一个 阅读全文
posted @ 2024-09-24 10:38 朝阳1 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 官网对函数的解释 https://www.php.net/array_reduce <?php interface Middleware { public static function handle(Closure $next); } class Middleware1 implements Mi 阅读全文
posted @ 2024-09-23 16:50 朝阳1 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 使用$argv or $argc参数接收 <?php echo "接收到{$argc}个参数"; print_r($argv); php test.php 接收到1个参数Array ( [0] => test.php ) php test.php a b c d 接收到5个参数Array ( [0] 阅读全文
posted @ 2024-09-20 15:30 朝阳1 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 安装 docker docker run --name clickhouse-server --ulimit nofile=262144:262144 --volume=$HOME/clickhouse:/var/lib/clickhouse -p 8123:8123 -p 9000:9000 -p 阅读全文
posted @ 2024-09-19 10:07 朝阳1 阅读(32) 评论(0) 推荐(0) 编辑
摘要: main.go package main import "fmt" // 指针(任何类型的指针)、slice和map作为返回值 // 当带有指针的返回值被赋给外部变量或者作为参数传递给其他函数时, 编译器无法确定该变量何时停止使用 // 因此,为了确保安全性和正确性,它必须将该数据分配在堆上,并使其 阅读全文
posted @ 2024-09-15 17:37 朝阳1 阅读(4) 评论(0) 推荐(0) 编辑
摘要: fifo的文件需要提前建立好,或者用程序处理 php <?php $fifoName = "my_fifo"; // 打开命名管道进行读取 $fifo = fopen($fifoName, "r+"); if ($fifo false) { die("Unable to open FIFO: $fi 阅读全文
posted @ 2024-09-15 09:35 朝阳1 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 文档地址 https://rustwasm.github.io/docs/wasm-bindgen/examples/without-a-bundler.html 创建项目 cargo new --lib my-wasm 添加依赖Cargo.toml [dependencies] wasm-bind 阅读全文
posted @ 2024-09-14 17:32 朝阳1 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 43 下一页