PHP interception string function strtr/str_replace
/**
* 1. strtr converts the specified characters
*
* string strtr ( string $str , string $from , string $to )
* string strtr ( string $str , array $replace_pairs )
*
* This function returns a copy of str and converts the characters specified in from to the corresponding characters in to.
* If from and to are not equal in length, the extra characters will be ignored.
*/
$str = 'http://flyer0126.iteye.com/';
echo strtr($str, 'IT', 'java');
//output: http://flyer0126.iteye.com/ strtr is case sensitive
//If from and to are not equal in length, the extra characters will be ignored
echo strtr($str , 'it', 'java');
//output: haap://flyer0126.jaeye.com/
//iteye --> jaeye it is only replaced by ja
//http --> ; haap replaces corresponding positions character by character, which does not meet our original intention
echo strtr($str, 'it', '');
//output: http://flyer0126.iteye.com / No replacement
echo strtr($str, 'it', ' ');
//output: http://flyer0126.teye.com/ Can be replaced
/**
* A summary of the from->to method of function strtr:
* 1. Case sensitive;
* 2. When the lengths of form and to are not equal, the extra characters will be ignored, and you cannot replace less with more, or Cannot replace more with less;
* 3. Replace corresponding positions character by character;
* 4. Cannot be replaced with empty space, but can be replaced with spaces.
*/
// In comparison, the latter method is obviously more appropriate
$replace_pairs = array(
'http://'=>'',
'it' = > 'java'
);
echo strtr($str, $replace_pairs);
//output: flyer0126.javaeye.com/ The replacement was successful and in line with the original intention of the replacement
/**
* 2. 函数 str_replace
* mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
*/
echo str_replace('it', 'java', $str);
//output: http://flyer0126.javaeye.com/
echo str_replace(array('http', ' :', '//', '/'), '', $str);
//output: flyer0126.iteye.com
echo str_replace(array('http', 'it', '/') , array('https', 'java', ''), $str);
//output: https:flyer0126.javaeye.com

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
