search
HomeBackend DevelopmentPHP TutorialConvert full-width characters to half-width characters in php_PHP tutorial

I have tried to replace characters through ASCII and other characters found online before, and found many inexplicable problems. Finally, I switched to the following character replacement method. List all the full-width characters that I can find so far and replace them one by one

Copy the code The code is as follows:

/**
* Convert full-width characters to half-width
*
* @param string $str
* @return string
*/
public function Sbc2Dbc($str)
{
$arr = array(
'0'=>'0' , '1'=>'1', '2'=>'2', '3'=>'3', '4'=>'4','5'=>'5' , '6'=>'6', '7'=>'7', '8'=>'8', '9'=>'9',
'A'=> 'A', 'B'=>'B', 'C'=>'C', 'D'=>'D', 'E'=>'E','F'=> 'F', 'G'=>'G', 'H'=>'H', 'I'=>'I', 'J'=>'J',
'K' =>'K', 'L'=>'L', 'M'=>'M', 'N'=>'N', 'O'=>'O','P' =>'P', 'Q'=>'Q', 'R'=>'R', 'S'=>'S', 'T'=>'T',
'U'=>'U', 'V'=>'V', 'W'=>'W', 'X'=>'X', 'Y'=>'Y', 'Z'=>'Z', 'a'=>'a', 'b'=>'b', 'c'=>'c', 'd'=>'d',
'e'=>'e', 'f'=>'f', 'g'=>'g', 'h'=>'h', 'i'=>' i','j'=>'j', 'k'=>'k', 'l'=>'l', 'm'=>'m', 'n'=>' n',
'o'=>'o', 'p'=>'p', 'q'=>'q', 'r'=>'r', 's'= >'s', 't'=>'t', 'u'=>'u', 'v'=>'v', 'w'=>'w', 'x'= >'x',
'y'=>'y', 'z'=>'z',
'('=>'(', ')'=>') ', '〔'=>'(', '〕'=>')', '['=>'[',']'=>']', '〖'=>'[ ', '〗'=>']', '"'=>'"', '"'=>'"',
'''=>''', '''=> ;''', '{'=>'{', '}'=>'}', '《'=>''>','%' =>'%', '+'=>'+', '—'=>'-', '-'=>'-',
'~'=>'~', ':'=>':', '. '=>'.', ', '=>',', ', '=>',', ', '=>',', ';'=>';', '? '=>'?', '! '=>'!', '…'=>'-',
'‖'=>'|', '"'=>'"', '''=>''' , '''=>'`', '|'=>'|', '〃'=>'"',' '=>' ', '×'=>'*', '  ̄'=>'~', '. '=>'.', '*'=>'*',
'&'=>'&',''< ;', '>'=>'>', '$'=>'$', '@'=>'@', '^'=>'^', '_'=> '_', '"'=>'"', '¥'=>'$', '='=>'=',
'\'=>'\', '/' =>'/'
);
return strtr($str, $arr);
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/730060.htmlTechArticleI have tried to replace characters such as ASCII on the Internet before, and found many inexplicable problems. Finally, I switched to the following character replacement method, listing all the full-width characters that can be found so far...
Statement
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
Dependency Injection in PHP: A Simple ExplanationDependency Injection in PHP: A Simple ExplanationMay 10, 2025 am 12:08 AM

DependencyInjection(DI)inPHPenhancescodeflexibilityandtestabilitybydecouplingclassesfromtheirdependencies.1)UseConstructorInjectiontopassdependenciesviaconstructors,ensuringfullinitialization.2)EmploySetterInjectionforpost-creationdependencychanges,t

PHP DI Container Comparison: Which One to Choose?PHP DI Container Comparison: Which One to Choose?May 10, 2025 am 12:07 AM

Pimple is recommended for simple projects, Symfony's DependencyInjection is recommended for complex projects. 1)Pimple is suitable for small projects because of its simplicity and flexibility. 2) Symfony's DependencyInjection is suitable for large projects because of its powerful capabilities. When choosing, project size, performance requirements and learning curve need to be taken into account.

PHP Dependency Injection: What, Why, and How?PHP Dependency Injection: What, Why, and How?May 10, 2025 am 12:06 AM

DependencyInjection(DI)inPHPisadesignpatternwhereclassdependenciesarepassedtoitratherthancreatedinternally,enhancingcodemodularityandtestability.Itimprovessoftwarequalityby:1)Enhancingtestabilitythrougheasydependencymocking,2)Increasingflexibilitybya

Dependency Injection in PHP: The Ultimate GuideDependency Injection in PHP: The Ultimate GuideMay 10, 2025 am 12:06 AM

DependencyInjection(DI)inPHPenhancescodemodularity,testability,andmaintainability.1)Itallowseasyswappingofcomponents,asseeninapaymentgatewayswitch.2)DIcanbeimplementedmanuallyorviacontainers,withcontainersaddingcomplexitybutaidinglargerprojects.3)Its

Optimize PHP Code: Reducing Memory Usage & Execution TimeOptimize PHP Code: Reducing Memory Usage & Execution TimeMay 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment