使用array_count_values函数可以找出数组中相同值出现的次数,array_count_values用法如下:<?php $array = array(1, "hello", 1, "world", "hello"); print_r(array_count_values($array)); ?>输出Array ( [1] => 2 [hello] => 2 [world] => 1 )
在配置文件 config->database.php的 connections 数组中新增数据连接项。可以设置默认db以下是指定数据库连接配置方法:Db::connect('mysql2')->table('store')->select();Thinkphp 6 - 连接配置多个数据库并实现自由切换(详细过程及实例demo)
之前,使用in_array(),进行逐个查重,数组长度1万以上,而且每次随机码都会查询,效率比较低。下面是优化之后的一个结果。<?php function genRandomString($len, $chars) { $charsLen = count($chars) - 1; // 将数组打乱 shuffle($chars); $output = ""; for ($i = 0; $i < $len; $i++) { $output .= $chars[mt_rand(0, $charsLen)]; } return $output; } // 生成指定数量随机码 $i = 0; $codeLen = 6; // 随机码长度 $codeArr = []; $randBase = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; $code_number = 100000; $time = microtime(true)*1000; while (true) {
array_column($data,'value','name');转换后array(3) { ["date_range"] => string(21) "2023-11-11:2024-11-11" ["title"] => string(23) "标题1,标题2,标题3" ["x"] => string(2) "10" }
echo "hello <br /> world"; echo nl2br("hello \n world"); // 效果与上面一样 如何在PHP中换行
风里来
最后,我终于解放了我自己……