Tagged articles
7 articles
Page 1 of 1
php Courses
php Courses
Sep 19, 2025 · Fundamentals

Why Named Arguments Make Your Code Safer and More Readable

This article explains how named (keyword) arguments improve code readability, eliminate order‑dependency bugs, and work seamlessly with optional parameters, providing clear examples in Python, JavaScript, and C# while comparing them to traditional positional arguments.

Function Parameterscode readabilitynamed arguments
0 likes · 7 min read
Why Named Arguments Make Your Code Safer and More Readable
php Courses
php Courses
Dec 23, 2024 · Backend Development

Using Named Arguments in PHP 8: Concepts, Benefits, and Best Practices

This guide explains PHP 8's named arguments feature, showing how they improve code readability, allow skipping optional parameters, make argument order irrelevant, and provide practical examples and best‑practice recommendations for writing clearer, more maintainable backend code.

BackendPHP8best-practices
0 likes · 7 min read
Using Named Arguments in PHP 8: Concepts, Benefits, and Best Practices
php Courses
php Courses
Sep 14, 2023 · Backend Development

New Features in PHP 8: Constructor Property Promotion and Reducing Redundant Code

The article explains PHP 8's constructor property promotion and other features such as named arguments and the null coalescing operator, showing how they simplify class definitions, reduce redundant getter/setter code, and improve readability and maintainability for backend developers.

Constructor Property PromotionNull Coalescing OperatorPHP8
0 likes · 5 min read
New Features in PHP 8: Constructor Property Promotion and Reducing Redundant Code
php Courses
php Courses
Mar 2, 2021 · Backend Development

Understanding the New Features of PHP 8.0

This article explains how to download and configure PHP 8, troubleshoot common installation issues, and provides detailed examples of PHP 8's major new features—including union types, the match expression, null‑safe operator, constructor property promotion, attributes, and named arguments—complete with code snippets.

AttributesNullsafe OperatorUnion Types
0 likes · 11 min read
Understanding the New Features of PHP 8.0
21CTO
21CTO
Jul 25, 2020 · Backend Development

What PHP 8 Brings: Attributes, Match Expressions, Union Types & More

This article reviews PHP 8’s most impactful new features—including first‑class attributes, constructor property promotion, match expressions, union types, and named arguments—showing code examples and explaining how they modernize PHP development.

AttributesBackend DevelopmentPHP8
0 likes · 5 min read
What PHP 8 Brings: Attributes, Match Expressions, Union Types & More