成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

自動翻譯程序員英語

leoperfect / 2050人閱讀

摘要:自動翻譯程序員英語桌面應(yīng)用將中文翻譯成程序員英文駝峰寫法等網(wǎng)頁應(yīng)用調(diào)用翻譯接口字母大寫把字符串中的首字符轉(zhuǎn)換為大寫。

自動翻譯程序員英語
1、桌面應(yīng)用 將中文翻譯成程序員英文(駝峰寫法等)
2、網(wǎng)頁應(yīng)用

調(diào)用翻譯接口

字母大寫
ucfirst() 把字符串中的首字符轉(zhuǎn)換為大寫。
ucwords() 把字符串中每個(gè)單詞的首字符轉(zhuǎn)換為大寫。
strtoupper() 把字符串轉(zhuǎn)換為大寫字母。

字母小寫
lcfirst() 把字符串的首字符轉(zhuǎn)換為小寫。
strtolower() 把字符串轉(zhuǎn)換為小寫字母。

字母替換
str_replace() 替換字符串中的一些字符(對大小寫敏感)。
substr_replace() 把字符串的一部分替換為另一個(gè)字符串。

PHP字符串中特殊符號
首字母去除數(shù)字
有效長度限制
去重空格
空格替換成_

_寫法:user_name/User_Name/USER_Name/USER_NAME
匈牙利命名法:變量名=屬性+類型+對象描述
駱駝命名法:userName
帕斯卡命名法:UserName

// _寫法:user_name/User_Name/USER_Name/USER_NAME// 匈牙利命名法:變量名=屬性+類型+對象描述// 駱駝命名法:userName// 帕斯卡命名法:UserName//匈牙利命名法寫不出來啊//  字母大寫// ucfirst() 把字符串中的首字符轉(zhuǎn)換為大寫。// ucwords() 把字符串中每個(gè)單詞的首字符轉(zhuǎn)換為大寫。// strtoupper() 把字符串轉(zhuǎn)換為大寫字母。// 字母小寫//  lcfirst() 把字符串的首字符轉(zhuǎn)換為小寫。// strtolower() 把字符串轉(zhuǎn)換為小寫字母。// 字母替換// str_replace() 替換字符串中的一些字符(對大小寫敏感)。// substr_replace() 把字符串的一部分替換為另一個(gè)字符串。// PHP字符串中特殊符號// 首字母去除數(shù)字// 有效長度限制// 去重空格// 空格替換成_// _寫法:user_name/User_Name/USER_Name/USER_NAME// 匈牙利命名法:變量名=屬性+類型+對象描述// 駱駝命名法:userName// 帕斯卡命名法:UserName // $strs//1=帕斯卡命名法,2=_寫法,3=駱駝命名法,4、-寫法$str="hello China";$named=new programmer(1);echo "帕斯卡命名法:".$named->programmer($str)."
"
;$named=new programmer(2,false,false,true);echo "_寫法首字符轉(zhuǎn)換為大寫:".$named->programmer($str)."
"
;$named=new programmer(2,false,true,false);echo "_寫法全部小寫:".$named->programmer($str)."
"
;$named=new programmer(2,true,false,false);echo "_寫法全部大寫:".$named->programmer($str)."
"
;$named=new programmer(4,false,false,true);echo "-寫法首字符轉(zhuǎn)換為大寫:".$named->programmer($str)."
"
;$named=new programmer(4,false,true,false);echo "-寫法全部小寫:".$named->programmer($str)."
"
;$named=new programmer(4,true,false,false);echo "-寫法全部大寫:".$named->programmer($str)."
"
;$named=new programmer(3);echo "駱駝命名法:".$named->programmer($str)."
"
;echo "sql 語句"."
"
.$named->create_table("ceshi", "測試表",[["field"=>$named->programmer($str),"name"=>$str]]); class programmer { public $type = "2"; //$this->type:1=帕斯卡命名法,2=_寫法,3=駱駝命名法 public $strtoupp = false; //全部大寫 public $strtolow = false; //全部小寫 。 public $lowe = false; //首字符轉(zhuǎn)換為大寫 public function __construct($type=1,$strtoupp= false,$strtolow= false,$lowe= false){ $this->type=$type; $this->strtoupp=$strtoupp; $this->strtolow=$strtolow; $this->lowe=$lowe;}//創(chuàng)建表 public function create_table($tablename, $as,$data=[]) { $sql = "create table " . $tablename; $sql .= " ( id int not null auto_increment,typeid varchar(40) not null comment "id", "; foreach ($data as $key => $value) { $sql .= " {$value["field"]} int(10) not null comment {$value["name"]} ,"; } $sql .= " creationtime int(10) not null comment "創(chuàng)建時(shí)間", updatetime int(10) not null comment "更新時(shí)間" ,"; $sql .= "primary key ( id ))auto_increment = 1 engine=MyISAM default charset=utf8 COMMENT="" . $as . """; return $sql; } public function programmer($str) { // // $output =$this->geturl($str); // $str=json_decode("{"type":"ZH_CN2EN","errorCode":0,"elapsedTime":0,"translateResult":[[{"src":"你好中國1602790634","tgt":"Hello China 1602790634"}]]}",true); // echo "
";        //   foreach ($str["translateResult"] as $key => $value) {        //       // code...        //   }        //   var_dump($str["translateResult"],$output,2);die;        //首字母大寫        //false              $str = $this->strFilter($str);                 // var_dump($this->type);die;        //帕斯卡命名法        if ($this->type == "1") {            //  把字符串轉(zhuǎn)換為小寫字母。            $str = strtolower($str) ;            //把字符串中每個(gè)單詞的首字符轉(zhuǎn)換為大寫。            $str = ucwords($str);            //去除首字母數(shù)字            $str = $this->ordstr_replace($str);            //去除空格            $str = str_replace(" ", "", $str);            //   var_dump($str,1);die;            return $str;            die;        } else if ($this->type == "2") {            //_寫法            //把字符串轉(zhuǎn)換為大寫字母。            if ($this->strtoupp) {                $str = strtoupper($str);                //   var_dump("strtoupper");            } else if ($this->strtolow) {                //把字符串轉(zhuǎn)換為小寫字母。                $str = strtolower($str);                //   var_dump("strtolower");            } else if ($this->lowe) {                //  把字符串轉(zhuǎn)換為小寫字母。                $str = strtolower($str) ;                //把字符串中每個(gè)單詞的首字符轉(zhuǎn)換為大寫。                $str = ucwords($str);                //   var_dump("ucwords");            }              //去除首字母數(shù)字            $str = $this->ordstr_replace($str);            //去除空格            $str = str_replace(" ", "_", $str);            //   var_dump($str);die;            return $str;            die;        } else if ($this->type == "3") {            // var_dump(3);            //駱駝命名法            //  把字符串轉(zhuǎn)換為小寫字母。            $str = strtolower($str) ;            $returnstr = "";            //去除首字母數(shù)字            $str = $this->ordstr_replace($str);            //  var_dump($str);            $strarr = explode(" ",$str);            //  var_dump($strarr,1);            foreach ($strarr as $key => $value) {                if ($key == 0) {                    $returnstr.= $value;                } else {                    //把字符串中每個(gè)單詞的首字符轉(zhuǎn)換為大寫                    $returnstr.= ucfirst($value) ;                }                // code...            }            $returnstr = str_replace(" ", "", $returnstr);            // var_dump($returnstr);            // die;            return $returnstr;            die;        }else if ($this->type == "4") {            //_寫法            //把字符串轉(zhuǎn)換為大寫字母。            if ($this->strtoupp) {                $str = strtoupper($str);                //   var_dump("strtoupper");            } else if ($this->strtolow) {                //把字符串轉(zhuǎn)換為小寫字母。                $str = strtolower($str);                //   var_dump("strtolower");            } else if ($this->lowe) {                //  把字符串轉(zhuǎn)換為小寫字母。                $str = strtolower($str) ;                //把字符串中每個(gè)單詞的首字符轉(zhuǎn)換為大寫。                $str = ucwords($str);                //   var_dump("ucwords");            }              //去除首字母數(shù)字            $str = $this->ordstr_replace($str);            //去除空格            $str = str_replace(" ", "-", $str);            //   var_dump($str);die;            return $str;            die;        }    }     //去除首字母數(shù)字    public function ordstr_replace($str) {        if (ord($str) >= 48 and ord($str) <= 57) {            $string = mb_convert_encoding($string, "UTF-8");            $str = str_replace($string, "", $str);        }        if (ord($str) >= 48 and ord($str) <= 57) {            $this->ordstr_replace($str);        }        return $str;        die;    }//去除特殊字符    public function strFilter($str) {        $str = str_replace("`", "", $str);        $str = str_replace("·", "", $str);        $str = str_replace("~", "", $str);        $str = str_replace("!", "", $str);        $str = str_replace("!", "", $str);        $str = str_replace("@", "", $str);        $str = str_replace("#", "", $str);        $str = str_replace("$", "", $str);        $str = str_replace("¥", "", $str);        $str = str_replace("%", "", $str);        $str = str_replace("^", "", $str);        $str = str_replace("……", "", $str);        $str = str_replace("&", "", $str);        $str = str_replace("*", "", $str);        $str = str_replace("(", "", $str);        $str = str_replace(")", "", $str);        $str = str_replace("(", "", $str);        $str = str_replace(")", "", $str);        $str = str_replace("-", "", $str);        $str = str_replace("_", "", $str);        $str = str_replace("——", "", $str);        $str = str_replace("+", "", $str);        $str = str_replace("=", "", $str);        $str = str_replace("|", "", $str);        $str = str_replace("http://", "", $str);        $str = str_replace("[", "", $str);        $str = str_replace("]", "", $str);        $str = str_replace("【", "", $str);        $str = str_replace("】", "", $str);        $str = str_replace("{", "", $str);        $str = str_replace("}", "", $str);        $str = str_replace(";", "", $str);        $str = str_replace(";", "", $str);        $str = str_replace(":", "", $str);        $str = str_replace(":", "", $str);        $str = str_replace("/"", "", $str);        $str = str_replace(""", "", $str);        $str = str_replace("“", "", $str);        $str = str_replace("”", "", $str);        $str = str_replace(",", "", $str);        $str = str_replace(",", "", $str);        $str = str_replace("<", "", $str);        $str = str_replace(">", "", $str);        $str = str_replace("《", "", $str);        $str = str_replace("》", "", $str);        $str = str_replace(".", "", $str);        $str = str_replace("。", "", $str);        $str = str_replace("/", "", $str);        $str = str_replace("、", "", $str);        $str = str_replace("?", "", $str);        $str = str_replace("?", "", $str);        return trim($str);    }}

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/121834.html

相關(guān)文章

  • 人工智能時(shí)代的降臨

    摘要:周二,白宮發(fā)布了一份關(guān)于人工智能與經(jīng)濟(jì)的令人寒心的報(bào)告。更重要的是,我們必須超越這種狹隘的思考方式受到人工智能威脅的工作崗位。今年,最矚目的人工智能與人類的對決就來自。然而,人工智能在年碾壓人類的一系列勝利僅僅是個(gè)開始。 showImg(https://segmentfault.com/img/remote/1460000008189557?w=1280&h=800); 去年以來關(guān)于人...

    animabear 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<