02 2021 档案
摘要:1.strstr(string $str,mixed $needle[, bool $before_needle = FALSE ]) 参数 $str 输入的字符串 $needle 查找的字符串, $before_needle 布尔值 $str = 'abc@yui' echo strstr($st
阅读全文
摘要:一、数组的一些关于键名和值的基础操作函数1.获取数组所有的键或值:array_keys() array_values() $arr_keys = array_keys($array);$arr_values = array_values($arr); 2.交换数组中键和值的位置,若重复前面的会被后面
阅读全文
摘要:git archive -o export0203.zip 7c62e670 $(git diff --name-only 37e6ded 7c62e670) git archive -o export0203.zip 打包到git log的 结束位置 $(git diff --name-only
阅读全文