PHP数组编码和解码:极品编码和解码字符串或数组分隔符或阵列本身的函数 [英] PHP array Encoding and Decoding:Need a function for encoding and decoding string or array with delimiters or array itself

查看:128
本文介绍了PHP数组编码和解码:极品编码和解码字符串或数组分隔符或阵列本身的函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在需要的功能,将EN code和德code所有树节点的ID的。
我的功能,将检查其单个字符串或数组字符串或字符串分隔符。
我有编码和解码一个插件。
在这里不用我的插件:

I am in a need of function that will encode and decode all the id's of a tree nodes. I function that will check if its a single string or array string or string with delimiters. I am having one plugin for encoding and decoding. here goes my plugin:

文件:E​​N code.class.php

<?php

/*-------------------------
Author: Jonathan Pulice
Date: July 26th, 2005
Name: JPEncodeClass v1
Desc: Encoder and decoder using patterns.
-------------------------*/

class Protector
{

    var $Pattern = "";
    var $PatternFlip = "";
    var $ToEncode = "";
    var $ToDecode = "";
    var $Decoded = "";
    var $Encoded = "";
    var $Bug = false;
    var $DecodePattern = "";

    function Debug($on = true)
    {
        $this->Bug = $on;
    }

    function Encode()
    {


        $ar = explode(":", $this->Pattern);
        $enc = $this->ToEncode;

        if ($this->Bug) echo "<!-- BEGIN ENCODING -->\n";

        foreach ($ar as $num => $ltr)
        {   
            switch ($ltr)
            {
                case "E":
                    $enc = base64_encode($enc);
                    break;
                case "D":
                    $enc = base64_decode($enc);
                    break;
                case "R":
                    $enc = strrev($enc);
                    break;
                case "I":
                    $enc = $this->InvertCase($enc);
                    break;
            }
            if ($this->Bug) echo "<!--     {$ltr}: {$enc}  -->\n";
        }

        if ($this->Bug) echo "<!-------------------->\n\n";

        @$this->Encoded = ($enc == $this->Str) ? "<font color='red'>No Encoding/Decoding Pattern Detected!</font>" : $enc;

        return $this->Encoded;

    }

    function Decode()
    {

        $pattern = ($this->DecodePattern != "") ? $this->DecodePattern : $this->Pattern;

        //Reverse the pattern
        $this->PatternFlip($pattern);

        //make into an array
        $ar = explode(":", $this->PatternFlip);

        $t = ($this->Encoded == "") ? $this->ToDecode : $this->Encoded;

        if ($this->Bug) echo "<!-- BEGIN DECODING -->\n";

        foreach ($ar as $num => $ltr)
        {
            switch ($ltr)
            {
                case "E":
                    $t = base64_encode($t);
                    break;
                case "D":
                    $t = base64_decode($t);
                    break;
                case "R":
                    $t = strrev($t);
                    break;
                case "I":
                    $t = $this->InvertCase($t);
                    break;
            }
            if ($this->Bug) echo "<!--     {$ltr}: {$t}  -->\n";
        }

        if ($this->Bug) echo "<!-------------------->\n\n";

        $this->Decoded = ($t == $this->Encoded) ? "<font color='red'>No Encoding/Decoding Pattern Detected!</font>" : $t;

        return $this->Decoded;

    }

    function MakePattern($len = 10)
    {
        //possible letters
        // E - Base64 Encode
        // R - Reverse String
        // I - Inverse Case
        $poss = array('E','R', 'I');

        //generate a string
        for ( $i = 0 ; $i < $len ; $i++ )
        {
            $tmp[] = $poss[ rand(0,2) ];
        }

        //echo $str. "<br>";
        //fix useless pattern section  RR  II
        $str = implode(":", $tmp);

        //fix
        $str = str_replace( 'R:R:R:R:R:R' , 'R:E:R:E:R:E' , $str );
        $str = str_replace( 'R:R:R:R:R' , 'R:E:R:E:R' , $str );
        $str = str_replace( 'R:R:R:R' , 'R:E:R:E' , $str );
        $str = str_replace( 'R:R:R' , 'R:E:R' , $str );
        $str = str_replace( 'R:R' , 'R:E' , $str );

        //fix
        $str = str_replace( 'I:I:I:I:I:I' , 'I:E:I:E:I:E' , $str );
        $str = str_replace( 'I:I:I:I:I' , 'I:E:I:E:I' , $str );
        $str = str_replace( 'I:I:I:I' , 'I:E:I:E' , $str );
        $str = str_replace( 'I:I:I' , 'I:E:I' , $str );
        $str = str_replace( 'I:I' , 'I:E' , $str );

        //string is good, set as pattern
        $this->Pattern = $str;
        return $this->Pattern; //if we need it

    }

    function PatternFlip($pattern)
    {
        //reverse the pattern
        $str = strrev($pattern);

        $ar = explode(":", $str);

        foreach ($ar as $num => $ltr)
        {   
            switch ($ltr)
            {
                case "E":
                    $tmp[] = "D";
                    break;
                case "D":
                    $tmp[] = "E";
                    break;
                case "R":
                    $tmp[] = "R";
                    break;
                case "I":
                    $tmp[] = "I";
                    break;
            }

        }

        $rev = implode(":", $tmp);

        $this->PatternFlip = $rev;

        return $this->PatternFlip;
    }

    // This is my custom Case Invertor!
    //   if you would like to use this in a script, please credit it to me, thank you
    function InvertCase($str)
    {
        //Do initial conversion
        $new = strtoupper( $str );

        //spluit into arrays
        $s = str_split( $str );
        $n = str_split( $new );

        //now we step through each letter, and if its the same as before, we swap it out
        for ($i = 0; $i < count($s); $i++)
        {
            if ( $s[$i] === $n[$i] ) //SWAP THE LETTER
            {
                //ge the letter
                $num = ord( $n[$i] );

                //see if the ord is in the alpha ranges ( 65 - 90 | 97 - 122 )
                if ( ( $num >= 65 AND $num <= 90 ) OR ( $num >= 97 AND $num <= 122 ) )
                {
                    if ($num < 97 ) { $num = $num + 32; }
                    else { $num = $num - 32; }

                    $newchr = chr($num);

                    $n[$i] = $newchr;
                }
            }
        }

        //join the new string back together
        $newstr = implode("", $n);

        return $newstr;

    }

}

?>

通过使用来自这个插件的功能我必须写一个函数来检查不同的条件。

By using the functions from this plugin I have to write a function to check for different conditions.

推荐答案

我写给你的原型从这个基类继承类。不知道是什么 $ PatternFlip 是,在这一类的不能访问,所以你必须改变它,你看到必要的。如果你想要的结果不同的格式,您可以添加函数的类。

I wrote you a prototype for an extended class from this base class. Not sure what $PatternFlip is for, its not accessible in this class so you'll have to change it as you see necessary. If you want the result in a different format you can add functions to the class.

class MyProtector extends Protector {

var $Object;
var $encode;//1 means encode, not 1 means decode
var $result;

function __MyProtector($obj="",$encode=0,$pattern="") {
   $this->$Object=$obj;
   if($encode){//encode object
       $this->$EncodePattern=$pattern;
       $this->$result=smartEncode($obj);
   }else{//decode object
       $this->$DecodePattern=$pattern;
       $this->result=smartDecode($obj);
}
}

private function smartEncode($object){
   //encodes string or array
   if(is_array($object){
       return encodeArray($object);
   }else if(is_string($object)){
       return encodeString($object);
   }

   return 0;

}

private function smartDecode($object){
   //encodes string or array
   if(is_string($object)&&strpos("&",$object)===1){
       return encodeDelimiter($object);
   }else if(is_string($object)){
       return encodeString($object);
   }

   return 0;

}
private function decodeDelimiter($object){
   $a=explode("&",$string);//will only work if your encoding does not include "&"!
   $aDecoded=array();
   $k=0; 
   foreach($a as $i){
     $this->toDecode=$i;
     $aDecoded[$k]=$this->Decode();
     $k++;          
   }
   return $aDecoded;


}

private function decodeString($s){
$this->toDecode=$s;
    return $this->Decode();
}

private function encodeString($s){
   $this->toEncode=$s;
   return $this->Encode();
}

private function encodeArray($s){
   foreach($s as $i){
  $this->toEncode=$i;
      $s=$s.$this->Encode()."&";
   }
   return $s;
}
//setters and getters
function getPattern(){
   return $this->Pattern;
}

function getPatternFlip(){
    return $this->Pattern;
}   
function getPattern(){
    return $this->Pattern;
}

//..etc

实例:

$o=new MyProtector($string,0,$pattern);
echo $o->$result; //returns encoded string
$o=new MyProtector($string,1,$pattern);
echo $o->$result; //returns decoded string
$o=new MyProtector($array,0,$pattern);
echo $o->$result; //returns decoded string with '&' inbetween encoded array entries
$o=new MyProtector($stringWithDelimiter,1,$pattern);
echo $o->$result;//returns decoded array

我敢肯定,会有一些语法错误,在那里我没有错别字编译/试过的东西。希望帮助。

I'm sure there will be a few syntax errors, typos in there as I haven't compiled/tried the thing. Hope that helped.

这篇关于PHP数组编码和解码:极品编码和解码字符串或数组分隔符或阵列本身的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆