네트워크 통신 및 파일 저장에서 데이터가 교환되는 경우가 많습니다. 네트워크 통신 트래픽, 파일 저장 크기 및 암호화된 통신 규칙을 줄이기 위해 데이터 보안을 보장하기 위해 데이터의 양방향 암호화 및 복호화를 수행해야 하는 경우가 많습니다.
PHP에서 이 기능을 구현하는 데 필요한 주요 기능은 주로 데이터를 비트 문자열로 압축하는 pack 및 unpack 함수
pack
입니다.
구문: 문자열 팩(문자열 형식, 혼합 [인수]...);
반환 값: 문자열
이 함수는 데이터를 문자열로 압축하고 압축하는 데 사용됩니다.
a - NUL - 패딩된 문자열 [패딩된 문자열] 문자열 공백을 NULL 문자로 패딩
A - SPACE - 패딩된 문자열 [패딩된 문자열]
h - 16진수 문자열, 낮은 "니블 우선"(낮은 니블 우선 )
H - 16진수 문자열, 높은 "니블" [높은 니블 우선](높은 니블 우선)
c - 부호 있는 문자
C – 부호 없는 문자
s – 부호 있는 짧은 패턴 [short] (일반적으로 16비트, 머신 바이트 순서)
S – 부호 없는 부호 있는 짧은 모드 [short](일반적으로 16비트, 머신 바이트 정렬)
n - 부호 없는 짧은 모드 [short](일반적으로 16비트, 빅 엔디안 바이트 정렬)
v - 부호 없는 짧은 패턴 [short](보통 16비트, 리틀 엔디안 바이트 정렬)
i - 부호 있는 정수(크기 및 바이트 순서로 결정됨)
I - 부호 없는 정수(크기 및 바이트로 결정됨) order)
l – 부호 있는 긴 패턴 [long](보통 32비트, 머신 바이트 순서)
L – 부호 없는 긴 모드 [long](보통 32비트, 머신 바이트 순서)
N – 부호 없는 long 모드 [long](보통 32비트, 빅 에디안 바이트 순서)
V – 부호 없는 긴 모드 [long](보통 32비트, 리틀 에디안 바이트 순서)
f – 부동 소수점(크기 및 바이트 순서)
d – double (크기 및 바이트 순서로 결정) 바이트 순서로 결정)
x – NUL 바이트 [NUL 바이트]
>
비트 문자열 데이터를 압축 해제합니다.
구문: 문자열 팩(문자열 형식, 혼합 [인수]...);반환 값: 배열이 함수는 비트 문자열 데이터의 압축을 풀 때 사용됩니다. 이 함수는 동일한 이름의 Perl 함수와 기능 및 사용법이 완전히 동일합니다.
사례 1, pack은 파일 데이터 저장 크기 감소를 구현합니다
<?php //存储整数1234567890 file_put_contents("test.txt", 1234567890);
<?php print_r(unpack("i", file_get_contents("test.txt")));
의미 있는 데이터를 문자열 7-110-abcdefg-117 형식으로 저장합니다.
문자 "-"를 나눈 후 첫 번째 숫자는 문자열의 길이, 두 번째 숫자는 저장 위치, 세 번째 숫자는 실제 저장된 문자열, 네 번째 숫자는 끝 위치를 나타냅니다. rree
위 방법의 단점:
2. 민감한 정보인 경우에는 접근이 안전하지 않을 수 있습니다. 3. 파일 저장 크기가 불규칙하게 증가합니다.
암호화:
<?php file_put_contents("test.txt", "7-110-abcdefg-117");
1. 데이터 크기 최적화
2. "i2a7i1"과 같은 압축 형식을 모르면 파일을 얻어도 제대로 읽을 수 없습니다. 바이너리 파일 변환 일반 텍스트의 경우. 3. 데이터가 증가하면 파일 저장 크기도 그만큼 늘어납니다. 매번 19바이트씩 증가합니다.
사례 3, 키-값 파일 저장
저장에서 생성되는 파일은 인덱스 파일, 데이터 파일 2가지
파일 내 데이터 저장 형식은 다음과 같다 :
코드 구현:
<?php file_put_contents("test.txt", pack("i2a7i1", 7, 110, "abcdefg", 117));
예:
<?php error_reporting(E_ALL); class fileCacheException extends Exception{ } //Key-Value型文件存储 class fileCache{ private $_file_header_size = 14; private $_file_index_name; private $_file_data_name; private $_file_index;//索引文件句柄 private $_file_data;//数据文件句柄 private $_node_struct;//索引结点结构体 private $_inx_node_size = 36;//索引结点大小 public function __construct($file_index="filecache_index.dat", $file_data="filecache_data.dat"){ $this->_node_struct = array( 'next'=>array(1, 'V'), 'prev'=>array(1, 'V'), 'data_offset'=>array(1,'V'),//数据存储起始位置 'data_size'=>array(1,'V'),//数据长度 'ref_count'=>array(1,'V'),//引用此处,模仿PHP的引用计数销毁模式 'key'=>array(16,'H*'),//存储KEY ); $this->_file_index_name = $file_index; $this->_file_data_name = $file_data; if(!file_exists($this->_file_index_name)){ $this->_create_index(); }else{ $this->_file_index = fopen($this->_file_index_name, "rb+"); } if(!file_exists($this->_file_data_name)){ $this->_create_data(); }else{ $this->_file_data = fopen($this->_file_data_name, "rb+");//二进制存储需要使用b } } //创建索引文件 private function _create_index(){ $this->_file_index = fopen($this->_file_index_name, "wb+");//二进制存储需要使用b if(!$this->_file_index) throw new fileCacheException("Could't open index file:".$this->_file_index_name); $this->_index_puts(0, '<'.'?php exit()?'.'>');//定位文件流至起始位置0, 放置php标记防止下载 $this->_index_puts($this->_file_header_size, pack("V1", 0)); } //创建存储文件 private function _create_data(){ $this->_file_data = fopen($this->_file_data_name, "wb+");//二进制存储需要使用b if(!$this->_file_index) throw new fileCacheException("Could't open index file:".$this->_file_data_name); $this->_data_puts(0, '<'.'?php exit()?'.'>');//定位文件流至起始位置0, 放置php标记防止下载 } private function _index_puts($offset, $data, $length=false){ fseek($this->_file_index, $offset); if($length) fputs($this->_file_index, $data, $length); else fputs($this->_file_index, $data); } private function _data_puts($offset, $data, $length=false){ fseek($this->_file_data, $offset); if($length) fputs($this->_file_data, $data, $length); else fputs($this->_file_data, $data); } /** * 文件锁 * @param $is_block 是否独占、阻塞锁 */ private function _lock($file_res, $is_block=true){ flock($file_res, $is_block ? LOCK_EX : LOCK_EX|LOCK_NB); } private function _unlock($file_res){ flock($file_res, LOCK_UN); } public function add($key, $value){ $key = md5($key); $value = serialize($value); $this->_lock($this->_file_index, true); $this->_lock($this->_file_data, true); fseek($this->_file_index, $this->_file_header_size); list(, $index_count) = unpack('V1', fread($this->_file_index, 4)); $data_size = filesize($this->_file_data_name); fseek($this->_file_data, $data_size); $value_size = strlen($value); $this->_data_puts(filesize($this->_file_data_name), $value); $node_data = pack("V1V1V1V1V1H32", ($index_count==0) ? 0 : $index_count*$this->_inx_node_size, 0, filesize($this->_file_data_name), strlen($value), 0, $key); $index_count++; $this->_index_puts($this->_file_header_size, $index_count, 4); $this->_index_puts($this->get_new_node_pos($index_count), $node_data); $this->_unlock($this->_file_data); $this->_unlock($this->_file_index); } public function get_new_node_pos($index_count){ return $this->_file_header_size + 4 + $this->_inx_node_size * ($index_count-1); } public function get_node($key){ $key = md5($key); fseek($this->_file_index, $this->_file_header_size); $index_count = fread($this->_file_index, 4); if($index_count>0) { for ($i=0; $i < $index_count ; $i++) { fseek($this->_file_index, $this->_file_header_size + 4 + $this->_inx_node_size * $i); $data = fread($this->_file_index, $this->_inx_node_size); $node = unpack("V1next/V1prev/V1data_offset/V1data_size/V1ref_count/H32key", $data); if($key == $node['key']){ return $node; } } }else{ return null; } } public function get_data($offset, $length){ fseek($this->_file_data, $offset); return unserialize(fread($this->_file_data, $length)); } } //使用方法 $cache = new fileCache(); $cache->add('abcdefg' , 'testabc'); $data = $cache->get_node('abcdefg'); print_r($data); echo $cache->get_data($data['data_offset'], $data['data_size']);