企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
* **隐藏手机号中间4位。** ``` $num = "13711111111"; $str = substr\_replace($num,'\*\*\*\*',3,4); ``` * **创建0777目录,mkdir,chmod配合使用** ``` //若目录不存在则创建目录 $filePath = '../file/20900101'; if(@!file_exists($filePath)){ mkdir($filePath, 0777, true); chmod($filePath, 0777); } ```