Tagged articles
17 articles
Page 1 of 1
php Courses
php Courses
Jan 8, 2026 · Backend Development

How to Reverse Arrays in PHP Using array_reverse

This guide explains the PHP array_reverse function, its parameters, and provides step‑by‑step code examples showing how to reverse both indexed and associative arrays, including preserving keys when needed.

Backendarray manipulationarray_reverse
0 likes · 3 min read
How to Reverse Arrays in PHP Using array_reverse
php Courses
php Courses
Aug 29, 2025 · Backend Development

Master PHP’s str_word_count(): Count Words, Get Arrays, and Customize Output

This guide introduces PHP’s str_word_count() function, detailing its syntax, parameters, and multiple practical examples that show how to count words, retrieve word arrays, obtain word positions, customize ignored characters, and use regular expressions for advanced string processing.

BackendString Manipulationcoding tutorial
0 likes · 4 min read
Master PHP’s str_word_count(): Count Words, Get Arrays, and Customize Output
php Courses
php Courses
Mar 31, 2025 · Backend Development

How to Get String Length in PHP Using strlen

This article explains how to use PHP's built‑in strlen function to obtain the length of a string, demonstrates the code with a "Hello World!" example, discusses byte‑versus‑character counting, and highlights considerations for multibyte encodings.

PHPbackend-developmentcoding tutorial
0 likes · 4 min read
How to Get String Length in PHP Using strlen
php Courses
php Courses
Jan 22, 2025 · Backend Development

Using PHP strlen to Get the Length of a String

This article explains how PHP's built‑in strlen function works to return the byte length of a string, demonstrates its usage with sample code, discusses the difference between byte and character counts, and highlights considerations for multibyte encodings.

PHPcoding tutorialstring length
0 likes · 4 min read
Using PHP strlen to Get the Length of a String
Test Development Learning Exchange
Test Development Learning Exchange
Dec 24, 2024 · Fundamentals

A Comprehensive Guide to Using Regular Expressions in Python

This article introduces Python's built‑in re module, explains how to import it, craft raw‑string patterns, and demonstrates common functions such as findall, match, search, sub, split, as well as compiling patterns, using match objects, flags, meta‑characters, and handling Unicode encoding for robust text processing.

String Manipulationcoding tutorialre module
0 likes · 8 min read
A Comprehensive Guide to Using Regular Expressions in Python
JD Tech Talk
JD Tech Talk
Nov 7, 2024 · Databases

Understanding Bloom Filters and Cuckoo Filters

This article explains Bloom filters and Cuckoo filters, covering their principles, implementations, and practical applications in database optimization.

Cuckoo FilterData Structuresalgorithm
0 likes · 12 min read
Understanding Bloom Filters and Cuckoo Filters
php Courses
php Courses
Jul 11, 2024 · Backend Development

Using PHP array_keys() Function: Syntax, Parameters, and Practical Examples

This article explains the PHP array_keys() function, detailing its syntax, optional parameters, and demonstrating its use with three code examples that cover indexed, associative, and multidimensional arrays, helping developers retrieve array keys efficiently.

array functionsarray_keysbackend-development
0 likes · 5 min read
Using PHP array_keys() Function: Syntax, Parameters, and Practical Examples
php Courses
php Courses
Nov 18, 2023 · Backend Development

Understanding PHP strlen(): Syntax, Examples, and Usage

This article explains PHP's strlen() function, detailing its syntax, parameters, and behavior, and provides two practical code examples showing how to obtain string lengths with and without surrounding spaces, while noting encoding and special‑character considerations.

PHPcoding tutorialstring length
0 likes · 4 min read
Understanding PHP strlen(): Syntax, Examples, and Usage
Test Development Learning Exchange
Test Development Learning Exchange
May 30, 2021 · Backend Development

Generating Barcodes in Python with Pillow and pyBarcode

This guide explains how to install the Pillow and pyBarcode Python packages and demonstrates two methods for generating various barcode formats—such as EAN13, Code39, and UPC—using the pyBarcode library, including code examples, configuration options, and saving the output as image files.

Image GenerationPythonbarcode
0 likes · 4 min read
Generating Barcodes in Python with Pillow and pyBarcode
Liangxu Linux
Liangxu Linux
Apr 10, 2021 · Fundamentals

Master LeetCode Problem Solving with VSCode: A Complete Setup Guide

This guide walks you through downloading, installing, and configuring VSCode, exploring its interface, adding the LeetCode extension, and using language-specific plugins so you can efficiently browse, code, and submit LeetCode problems directly from the editor.

ExtensionsIDELeetCode
0 likes · 5 min read
Master LeetCode Problem Solving with VSCode: A Complete Setup Guide
Java Captain
Java Captain
Sep 27, 2018 · Fundamentals

A Beginner's Guide to Regular Expressions: Basics and Advanced Topics

This tutorial introduces regular expressions across programming languages, covering fundamental metacharacters, quantifiers, grouping, alternation, character classes, assertions, capturing, backreferences, greedy vs. lazy matching, and provides practical Java code examples for common validation tasks.

coding tutorialjavapattern-matching
0 likes · 17 min read
A Beginner's Guide to Regular Expressions: Basics and Advanced Topics