Home Backend Development PHP Tutorial 简体转繁体内码转换PHP函数_PHP

简体转繁体内码转换PHP函数_PHP

Jun 01, 2016 pm 12:34 PM
g gb text function Simplified Convert

<font color="#000000"> <font color="#0000BB"></font><font color="#007700"> <br></font><font color="#FF8000">//hessian <hessian> 推荐发布在 ctohome.com <br>// gb_big5("需要等待转换的文字","等待转换文字的语言种类") <br></hessian></font><font color="#007700">function </font><font color="#0000BB">gb_big5</font><font color="#007700">(</font><font color="#0000BB">$Text</font><font color="#007700">,</font><font color="#0000BB">$Source_Language</font><font color="#007700">=</font><font color="#DD0000">"gb"</font><font color="#007700">){ <br>switch (</font><font color="#0000BB">$Source_Language</font><font color="#007700">) { <br>case </font><font color="#DD0000">"gb"</font><font color="#007700">: <br></font><font color="#0000BB">$fp </font><font color="#007700">= </font><font color="#0000BB">fopen</font><font color="#007700">(</font><font color="#DD0000">"gb-big5.table"</font><font color="#007700">, </font><font color="#DD0000">"r"</font><font color="#007700">); <br>break; <br>case </font><font color="#DD0000">"big5"</font><font color="#007700">: <br></font><font color="#0000BB">$fp </font><font color="#007700">= </font><font color="#0000BB">fopen</font><font color="#007700">(</font><font color="#DD0000">"big5-gb.table"</font><font color="#007700">, </font><font color="#DD0000">"r"</font><font color="#007700">); <br>break; <br>default: <br></font><font color="#0000BB">$fp </font><font color="#007700">= </font><font color="#0000BB">fopen</font><font color="#007700">(</font><font color="#DD0000">"gb-big5.table"</font><font color="#007700">, </font><font color="#DD0000">"r"</font><font color="#007700">); <br>break; <br>} <br><br></font><font color="#0000BB">$max</font><font color="#007700">=</font><font color="#0000BB">strlen</font><font color="#007700">(</font><font color="#0000BB">$Text</font><font color="#007700">)-</font><font color="#0000BB">1</font><font color="#007700">; <br>for(</font><font color="#0000BB">$i</font><font color="#007700">=</font><font color="#0000BB">0</font><font color="#007700">;</font><font color="#0000BB">$i</font><font color="#007700"><font color="#0000BB">$max</font><font color="#007700">;</font><font color="#0000BB">$i</font><font color="#007700">++){ <br></font><font color="#0000BB">$h</font><font color="#007700">=</font><font color="#0000BB">ord</font><font color="#007700">(</font><font color="#0000BB">$Text</font><font color="#007700">[</font><font color="#0000BB">$i</font><font color="#007700">]); <br>if(</font><font color="#0000BB">$h</font><font color="#007700">>=</font><font color="#0000BB">160</font><font color="#007700">){ <br></font><font color="#0000BB">$l</font><font color="#007700">=</font><font color="#0000BB">ord</font><font color="#007700">(</font><font color="#0000BB">$Text</font><font color="#007700">[</font><font color="#0000BB">$i</font><font color="#007700">+</font><font color="#0000BB">1</font><font color="#007700">]); <br>if(</font><font color="#0000BB">$h</font><font color="#007700">==</font><font color="#0000BB">161 </font><font color="#007700">&& </font><font color="#0000BB">$l</font><font color="#007700">==</font><font color="#0000BB">64</font><font color="#007700">){ <br></font><font color="#0000BB">$gb</font><font color="#007700">=</font><font color="#DD0000">" "</font><font color="#007700">; <br>}else{ <br></font><font color="#0000BB">fseek</font><font color="#007700">(</font><font color="#0000BB">$fp</font><font color="#007700">,(</font><font color="#0000BB">$h</font><font color="#007700">-</font><font color="#0000BB">160</font><font color="#007700">)*</font><font color="#0000BB">510</font><font color="#007700">+(</font><font color="#0000BB">$l</font><font color="#007700">-</font><font color="#0000BB">1</font><font color="#007700">)*</font><font color="#0000BB">2</font><font color="#007700">); <br></font><font color="#0000BB">$gb</font><font color="#007700">=</font><font color="#0000BB">fread</font><font color="#007700">(</font><font color="#0000BB">$fp</font><font color="#007700">,</font><font color="#0000BB">2</font><font color="#007700">); <br>} <br></font><font color="#0000BB">$Text</font><font color="#007700">[</font><font color="#0000BB">$i</font><font color="#007700">]=</font><font color="#0000BB">$gb</font><font color="#007700">[</font><font color="#0000BB">0</font><font color="#007700">]; <br></font><font color="#0000BB">$Text</font><font color="#007700">[</font><font color="#0000BB">$i</font><font color="#007700">+</font><font color="#0000BB">1</font><font color="#007700">]=</font><font color="#0000BB">$gb</font><font color="#007700">[</font><font color="#0000BB">1</font><font color="#007700">]; <br></font><font color="#0000BB">$i</font><font color="#007700">++; <br>} <br>} <br></font><font color="#0000BB">fclose</font><font color="#007700">(</font><font color="#0000BB">$fp</font><font color="#007700">); <br>return </font><font color="#0000BB">$Text</font><font color="#007700">; <br>} <br><br></font><font color="#FF8000">//例子:$big5是繁体字 $gb是简体字 输出以后请切换浏览器编码 即可见到,这是修改于Ajax的代码 <br>/* <br>$big5="徽骸種9a#HGYUG7KJN*(*(*^(^(*(*Θぃの"; <br>$gb="繁体语言"; <br>echo gb_big5($gb,"gb"); <br>echo "<br><br><br><br><br>"; <br>echo gb_big5($big5,"big5"); <br>*/ <br><br></font><font color="#0000BB">?></font></font> </font>
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Tips for dynamically creating new functions in golang functions Tips for dynamically creating new functions in golang functions Apr 25, 2024 pm 02:39 PM

Go language provides two dynamic function creation technologies: closure and reflection. closures allow access to variables within the closure scope, and reflection can create new functions using the FuncOf function. These technologies are useful in customizing HTTP routers, implementing highly customizable systems, and building pluggable components.

Complete collection of excel function formulas Complete collection of excel function formulas May 07, 2024 pm 12:04 PM

1. The SUM function is used to sum the numbers in a column or a group of cells, for example: =SUM(A1:J10). 2. The AVERAGE function is used to calculate the average of the numbers in a column or a group of cells, for example: =AVERAGE(A1:A10). 3. COUNT function, used to count the number of numbers or text in a column or a group of cells, for example: =COUNT(A1:A10) 4. IF function, used to make logical judgments based on specified conditions and return the corresponding result.

C++ Function Exception Advanced: Customized Error Handling C++ Function Exception Advanced: Customized Error Handling May 01, 2024 pm 06:39 PM

Exception handling in C++ can be enhanced through custom exception classes that provide specific error messages, contextual information, and perform custom actions based on the error type. Define an exception class inherited from std::exception to provide specific error information. Use the throw keyword to throw a custom exception. Use dynamic_cast in a try-catch block to convert the caught exception to a custom exception type. In the actual case, the open_file function throws a FileNotFoundException exception. Catching and handling the exception can provide a more specific error message.

gate official website entrance gate exchange official website gate official website entrance gate exchange official website Feb 19, 2025 pm 03:03 PM

The official website of Gate.io can be accessed by clicking on the link or entering the URL in the browser. It is recommended to add the URL to a bookmark or favorite for easy access. If you encounter inaccessible issues, try clearing the browser's cache and cookies. Be careful to prevent phishing, the official website of Gate.io will not take the initiative to ask for personal information. In addition, Gate.io provides mobile applications that can be found through the app provider

BitMEX exchange withdrawal rules and advantages and disadvantages BitMEX exchange withdrawal rules and advantages and disadvantages Feb 21, 2025 pm 10:48 PM

BitMEX exchange currency withdrawal requirements: Two-step verification and identity verification must be completed. The minimum amount of withdrawal varies by currency. The withdrawal process includes logging into the account, entering the withdrawal address, entering the amount and confirming transactions. The advantages of BitMEX withdrawal include fast processing, low handling fees, multiple currency support and strict security measures. However, it also faces shortcomings such as insufficient supervision, risk of hacker attacks, restrictions on withdrawals and account freezes.

How to trade in TREZOR and what to note How to trade in TREZOR and what to note Feb 21, 2025 pm 10:30 PM

Transactions on TREZOR Connect the TREZOR device and install the TREZORBridge application. Open the TREZOR suite and select the transaction type (send, receive, or redeemed). Enter transaction details (address, amount, fee, etc.). Check the details and press Confirm on the TREZOR device to authorize the transaction.

The latest top ten digital currency trading app rankings in 2025 The latest top ten digital currency trading app rankings in 2025 Feb 27, 2025 pm 06:24 PM

The top ten digital currency trading apps in 2025 are: Binance, OKX, Gate.io, Bitget, Huobi, KuCoin, BitMart, Bybit, Bitfinex, and Poloniex. These transactions stand out in the market for their trading volume, asset selection, leveraged trading, social trading, compliance, ease of use, low transaction fees and fund security.

Things to note when Golang functions receive map parameters Things to note when Golang functions receive map parameters Jun 04, 2024 am 10:31 AM

When passing a map to a function in Go, a copy will be created by default, and modifications to the copy will not affect the original map. If you need to modify the original map, you can pass it through a pointer. Empty maps need to be handled with care, because they are technically nil pointers, and passing an empty map to a function that expects a non-empty map will cause an error.

See all articles