PHP操作word文档

使用php的phpoffice/phpword扩展包,操作word文档 1. 安装扩展包 composer require phpoffice/phpword 3. 简单使用 在项目里面先设计一个word模版文件,设置

Linux top 命令查看负载

查看系统负载的时候,使用top命令 可以看到 %Cpu(s): 1.5 us, 0.3 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 10606 root 20 0 537224 88804 6920 S 11.0 0.5 16600:37 python 17868 root 10 -10 130980 17248 9824 S

Scala 列表(List)

1. List List 是 Scala 中非常重要的一个数据结构,其与 Array(数组) 非常类似,但是 List 是不可变的. var list = List("vilay","zz") println(list(0)) 由于List是不可变的,所以不能重新赋值 list(0) =

Mysql 查看数据库表大小

Mysql 查看数据库表大小 select table_name,table_rows,data_length+index_length,concat(round((data_length+index_length)/1024/1024,2),'MB') data from information_schema.tables where table_schema='数据库名';