Tagged articles
19 articles
Page 1 of 1
php Courses
php Courses
Aug 21, 2025 · Backend Development

Master PHP’s str_word_count: Count Words, Get Arrays, Customize Ignored Characters

This guide details PHP’s str_word_count() function, covering its syntax, parameter options, and multiple practical examples that demonstrate counting words, retrieving word arrays, obtaining word positions, customizing ignored characters, and using regular expressions for flexible string analysis.

PHPString Functionsstr_word_count
0 likes · 4 min read
Master PHP’s str_word_count: Count Words, Get Arrays, Customize Ignored Characters
php Courses
php Courses
Dec 26, 2024 · Backend Development

Using PHP basename() Function to Retrieve File Names from Paths

This article explains the PHP basename() function, detailing its syntax, parameters, and behavior, and demonstrates its usage through multiple code examples that extract file names from absolute and relative paths, optionally removing specified suffixes, while noting OS-specific considerations.

BackendFile PathPHP
0 likes · 5 min read
Using PHP basename() Function to Retrieve File Names from Paths
php Courses
php Courses
Jun 20, 2024 · Backend Development

Key New Features and Improvements in PHP 8

The article provides a comprehensive overview of PHP 8’s major enhancements—including an expanded type system, match expressions, the null‑safe operator, attributes, a JIT compiler, and string/array improvements—illustrated with code examples and notes on upcoming PHP 8.4 releases.

AttributesJIT compilerNullsafe Operator
0 likes · 8 min read
Key New Features and Improvements in PHP 8
Java Tech Enthusiast
Java Tech Enthusiast
Jun 10, 2024 · Databases

Common MySQL String Functions

MySQL offers a comprehensive set of string functions—including lower, upper, concat, substring/substr, length, char_length, instr, lpad, rpad, trim (with leading, trailing, both options), replace, repeat, reverse, and format—that enable case conversion, concatenation, extraction, padding, trimming, substitution, repetition, reversal, and numeric formatting of textual data.

SQLString FunctionsText Manipulation
0 likes · 6 min read
Common MySQL String Functions
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Apr 13, 2024 · Databases

Comprehensive Guide to MySQL String Functions

This article provides an in‑depth overview of MySQL string functions, covering concatenation, length, position, replacement, conversion, encryption, comparison, generation, and their syntax and usage examples, helping developers manipulate textual data efficiently in database operations.

String Functionsdata manipulationdatabase
0 likes · 18 min read
Comprehensive Guide to MySQL String Functions
php Courses
php Courses
Jan 4, 2024 · Backend Development

Common PHP Functions for Searching and Filtering Data

This article introduces essential PHP functions such as strpos, strstr, in_array, array_search, htmlspecialchars, and filter_var, providing clear explanations and example code to help developers efficiently search, filter, and validate strings, arrays, and input data.

PHPSearchString Functions
0 likes · 4 min read
Common PHP Functions for Searching and Filtering Data
php Courses
php Courses
Nov 16, 2023 · Backend Development

Using PHP 8.1 str_starts_with() Function: Syntax, Examples, and Case Sensitivity

PHP 8.1 introduces the str_starts_with() function, which checks if a string begins with a given substring, returning true or false; this article explains its syntax, demonstrates basic and URL-check examples, highlights case‑sensitivity, and mentions the case‑insensitive variant str_starts_with_ci().

PHP8String FunctionsTutorial
0 likes · 3 min read
Using PHP 8.1 str_starts_with() Function: Syntax, Examples, and Case Sensitivity
php Courses
php Courses
Sep 7, 2023 · Backend Development

PHP strtolower() Function: Syntax, Parameters, Return Value, Examples, and Usage Tips

The article explains PHP's strtolower() function, detailing its syntax, parameters, return value, and providing multiple code examples—including full string conversion, partial conversion, word-level manipulation, and multibyte handling—while also noting important considerations for case sensitivity and non‑alphabetic characters.

BackendPHPString Functions
0 likes · 5 min read
PHP strtolower() Function: Syntax, Parameters, Return Value, Examples, and Usage Tips
php Courses
php Courses
Jul 12, 2023 · Backend Development

Using strpos() and strrpos() Functions to Detect Substrings in PHP

These PHP tutorials demonstrate how to use the strpos() and strrpos() functions to detect the presence and position of characters in strings, explaining return values, providing complete code examples, and offering additional learning resources for backend development.

PHPString Functionsstrpos
0 likes · 4 min read
Using strpos() and strrpos() Functions to Detect Substrings in PHP
php Courses
php Courses
Jun 30, 2023 · Backend Development

10 Essential PHP String Manipulation Functions with Examples

This article introduces ten essential PHP string manipulation functions—including substr, str_replace, implode, strpos, and sprintf—explaining their purpose and providing clear code examples that demonstrate how to extract, replace, concatenate, search, split, trim, and format strings efficiently in PHP development.

PHPString Functionsimplode
0 likes · 5 min read
10 Essential PHP String Manipulation Functions with Examples
Laravel Tech Community
Laravel Tech Community
Oct 14, 2020 · Backend Development

Using mb_strtoupper() to Convert Strings to Uppercase in PHP

This article explains the PHP mb_strtoupper() function, detailing its syntax, parameters, return value, and demonstrates usage that converts English and Unicode strings to uppercase, highlighting optional encoding handling, including how to set internal encoding and handle multibyte characters correctly.

PHPString Functionsmb_strtoupper
0 likes · 2 min read
Using mb_strtoupper() to Convert Strings to Uppercase in PHP
Laravel Tech Community
Laravel Tech Community
May 26, 2020 · Backend Development

Master PHP’s stristr() for Case‑Insensitive String Searches

Learn how PHP’s stristr() function performs a case‑insensitive search within a string, understand its syntax, parameters, return values, and see three practical code examples that illustrate basic usage, checking for absence, and using character codes, along with key differences from strstr().

BackendPHPString Functions
0 likes · 3 min read
Master PHP’s stristr() for Case‑Insensitive String Searches
Laravel Tech Community
Laravel Tech Community
May 16, 2020 · Fundamentals

Master PHP Sorting Algorithms: Insertion, Selection, Bubble, Quick, Shell & More

This comprehensive guide walks through classic PHP sorting techniques—including insertion, selection, bubble, quick, and shell sorts—along with essential string utilities such as length calculation, reversal, comparison, substring search, replacement, insertion, deletion, copying, concatenation, simple encoding/decoding, and basic encryption/decryption, providing clear explanations and ready‑to‑run code examples for each algorithm.

AlgorithmsData StructuresPHP
0 likes · 15 min read
Master PHP Sorting Algorithms: Insertion, Selection, Bubble, Quick, Shell & More