测试用缓存中的标记头,替换页面中的标记头

本文介绍了如何在PHP中创建一个名为Test的类,用于处理和设置HTTP头部信息。特别是针对Content-Length,代码避免了修改此特定头部。程序从序列化的字符串中恢复缓存的头部信息,并使用这些信息更新类的头部数组。
摘要由CSDN通过智能技术生成

测试用缓存中的标记头,替换页面中的标记头

<?php
class test
{
	public $headers=array();
	public function set_header($header,$replace=true)
	{
		
		if( strncasecmp($header,'content-length',14)===0)
		{
			return $this;
		}
		$this->headers[]=array($header,$replace);
		return $this->headers;
	}
	public function getheader()
	{
		return $this->headers;
	}
}
$test=new test();
//这里的$str就是缓存中被序列化的header标记头
//$head[0]="Content-Type:text/html; charset=utf8"
//$head[1]=1
$str='a:2:{s:6:"expire";i:1675868933;s:7:"headers";a:1:{i:0;a:2:{i:0;s:36:"Content-Type:text/html; charset=utf8";i:1;b:1;}}}ENDTS--->';
if(!preg_match('/^(.*)ENDTS--->/',$str,$match))
	{
		return false;
	}
$cache_info=unserialize($match[1]);
foreach($cache_info['headers'] as $head)
{
	$test->set_header($head[0],$head[1]);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值