Sorting out case-sensitive issues in PHP_PHP tutorial
PHP's handling of case-sensitive issues is messy, and problems may occasionally occur when writing code, so I'll summarize it here.
But I am not encouraging everyone to use these rules. It is recommended that everyone always adhere to "case sensitivity" and follow unified coding standards.
1. Case sensitivity
1. Variable names are case-sensitive
All variables are case-sensitive, including ordinary variables and $_GET, $_POST, $_REQUEST, $_COOKIE , $_SESSION, $GLOBALS, $_SERVER, $_FILES, $_ENV, etc.;
< ;?php
$abc = 'abcd';
echo $abc; //output 'abcd'
echo $aBc; //no output
echo $ABC; //no output
2. Constant names are case-sensitive by default and are usually written in uppercase
(but I couldn’t find a configuration item that can change this default, please solve)
1 define("ABC","Hello World");
echo ABC; //Output Hello World
echo abc; //Output abc
3. php.ini configuration item instructions are case-sensitive
For example, file_uploads = 1 cannot be written as File_uploads = 1
two , case-insensitive
4. Function names, method names, and class names are not case-sensitive, but it is recommended to use the same name as when defined
function show(){
echo "Hello World";
}
show(); / /Output Hello World Recommended writing method
SHOW(); //Output Hello World
class cls{
static function func(){
echo "hello world";
}
}
Cls::FunC( ); //Output hello world
5. Magic constants are not case-sensitive. It is recommended to use uppercase letters
including: __LINE__, __FILE__, __DIR__, __FUNCTION__, __CLASS__, __METHOD__, __NAMESPACE__.
echo __line__; //Output 2
echo __LINE__; //Output 3
6. NULL, TRUE and FALSE are not case sensitive
$a = null;
$b = NULL;
$c = true;
$d = TRUE;
$e = false;
$f = FALSE;
var_dump($a == $b); //Output boolean true
var_dump($c == $d); //Output boolean true
var_dump ($e == $f); //Output boolean true
7. Type coercion, case-insensitive, including:
* (int), (integer) – converted to Integer type
* (bool), (boolean) – converted to Boolean type
* (float), (double), (real) – converted to floating point type
* (string) – converted to character String
* (array) – converted to array
* (object) – converted to object
$a=1;
var_dump($a); //Output int 1
$b=(STRING)$a;
var_dump($b ); //Output string '1' (length=1)
$c=(string)$a;
var_dump($c); //Output string '1' (length=1)

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.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
