上一页 1 2 3 4 5 6 7 8 ··· 26 下一页
摘要: preg_match('/^[\w\-\.]+@[\w\-]+(\.\w+)+$/',$email); 更多:https://www.shanhubei.com/archives/55206.html 阅读全文
posted @ 2024-04-11 17:04 珊瑚贝博客 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 方法1:php内建函数 strip_tags()除去HTML标签 <?php header("content-type:text/html;charset=utf-8"); function strip_html_tags($str){ $pattern = '/<("[^"]*"|\'[^\']\ 阅读全文
posted @ 2024-04-11 15:56 珊瑚贝博客 阅读(50) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); $script = "以下内容不显示:<script type='text/javascript'>alert('cc');</script>"; $pattern = '/<script[^ 阅读全文
posted @ 2024-04-11 15:45 珊瑚贝博客 阅读(14) 评论(0) 推荐(0) 编辑
摘要: <?php function releative_path($path1,$path2){ $arr1 = explode("/",dirname($path1)); $arr2 = explode("/",dirname($path2)); for ($i=0,$len = count($arr2 阅读全文
posted @ 2024-04-11 15:15 珊瑚贝博客 阅读(6) 评论(0) 推荐(0) 编辑
摘要: <?php function tree($arr,$pid=0,$level=0){ static $list = array(); foreach ($arr as $v) { //如果是顶级分类,则将其存到$list中,并以此节点为根节点,遍历其子节点 if ($v[&#39;parent_id 阅读全文
posted @ 2024-04-11 15:00 珊瑚贝博客 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 本文主要介绍的是php使用函数pathinfo() 、parse_url()和basename()解析URL的实例代码,下面话不多说,直接来看代码 实例代码如下: 1、利用pathinfo解析URL <? $test = pathinfo("http://localhost/index.php"); 阅读全文
posted @ 2024-04-11 11:46 珊瑚贝博客 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 实例 格式化本地日期和时间,并返回格式化的日期字符串: <?php // Prints the day echo date("l") . "<br>"; // Prints the day, date, month, year, time, AM or PM echo date("l jS of F 阅读全文
posted @ 2024-04-10 18:04 珊瑚贝博客 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 一、crontab的语法规则 crontab的语法规则格式:代表意义 分钟 小时 日期 月份 周 命令数字范围 0~59 0~23 1~31 1~12 0~7 需要执行的命令周的数字为 0 或 7 时,都代表“星期天”的意思。 * * * * * user-cmd 分 时 日 月 周 user-cm 阅读全文
posted @ 2024-04-10 16:34 珊瑚贝博客 阅读(540) 评论(0) 推荐(0) 编辑
摘要: CAP原则又称CAP定理,指的是在一个分布式系统中, 一致性(Consistency)、 可用性(Availability)、 分区容错性(Partition tolerance)。 CAP 原则指的是,这三个要素最多只能同时实现两点,不可能三者兼顾。 也被称为Brewer定理,是分布式计算中的一个 阅读全文
posted @ 2024-04-10 16:17 珊瑚贝博客 阅读(63) 评论(0) 推荐(0) 编辑
摘要: // 首先确保已经配置了Yii的Redis组件 // 在配置文件中(例如:config/main.php) return [ // ... 'components' => [ 'redis' => [ 'class' => 'yii\redis\Connection', 'hostname' => 阅读全文
posted @ 2024-04-10 16:15 珊瑚贝博客 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 26 下一页