2 Star 2 Fork 0

众产-王坤/ciyphp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
aitemfunc.php 582 Bytes
一键复制 编辑 原始数据 按行查看 历史
众产-王坤 提交于 2020-01-28 18:32 . 修正bug,增加功能
<?php
function ismobile($mob)
{
return preg_match( '/^1\d{10}$/',$mob);
}
/**
* 保存文本数据到本地文件。
*/
function savefile($filename, $text) {
if (!$filename || !$text)
return false;
if (makedir(dirname($filename))) {
$filename = iconv('UTF-8', 'GBK', $filename);
if ($fp = fopen($filename, 'w')) {
if (@fwrite($fp, $text)) {
fclose($fp);
return true;
} else {
fclose($fp);
return false;
}
}
}
return false;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/boiciy/ciyphp.git
git@gitee.com:boiciy/ciyphp.git
boiciy
ciyphp
ciyphp
master

搜索帮助