Home Backend Development PHP Tutorial PHP newbies on the road (4)_PHP tutorial

PHP newbies on the road (4)_PHP tutorial

Jul 21, 2016 pm 04:00 PM
php getting Started variable and string object support data array integer type

Getting Started with PHP

4.1 Data Types

PHP supports integers, floating point numbers, strings, arrays and objects. Variable types are usually not determined by the programmer but by the PHP runtime (what a relief!). Of course, if you like, you can also use cast or the function settype() to convert a variable of a certain type into a specified type.

Number

The numerical type can be an integer or a floating point number. You can use the following statements to assign a value to a value:
$a = 1234; # Decimal number
$a = -123; # Negative number
$a = 0123; # Octal number (equal to decimal number 83)
$a = 0x12; # Hexadecimal number (equal to 18 decimal numbers)
$a = 1.234; # Floating point number "double precision number"
$a = 1.2e3; # Double Exponential form of precision number

String

Strings can be defined by fields enclosed in single or double quotes. Note that the difference is that strings enclosed in single quotes are defined literally, while strings enclosed in double quotes can be expanded. Moreover, you can use backslash () in a double-quoted string to add escape sequences and conversion characters to the string. For example:

$first = 'Hello';
$second = "World";
$full1 = "$first $second"; # Generate Hello World
$full2 = ' $first $second';# produces $first $second
$full3="01DC studio,." 2000 copyright." " ;

 Please note the last line, if you need to use double quotes in the string , you can use the backslash character, as shown in this line of statements. The backslash here is used to change the functionality of double quotes.

Characters and numbers can be connected using arithmetic symbols. Characters are converted to numbers using their original position. There are detailed examples in the PHP manual.

Arrays and Hash Tables

Arrays and hash tables are supported in the same way. How you use them depends on how you define them. You can define them using list() or array(), or assign values ​​to arrays directly. The index of the array starts from 0. Although I haven't explained it here, you can easily use multidimensional arrays.

//An array containing two elements
$a[0] = "first";
$a[1] = "second";
$a[] = " third"; // Simple way to add array elements
// Now $a[2] is assigned the value "third"
echo count($a); // Print out 3 because the array has 3 elements Element
// Define an array with a statement and assign value
$myphonebook = array (
"sbabu" => "5348",
"keith" => "4829",
"carole" => "4533"
);
// Oh, forget about the dean, let's add an element
$myphonebook["dean"] = "5397";
// You defined the carale element wrong, let's correct it
$myphonebook["carole"] => "4522"
// Haven't I told you how to use similar support for arrays? Let's take a look at
echo "$myphonebook[0]"; // sbabu
echo "$myphonebook[1]"; // 5348

Some others useful for arrays or hash tables The functions include sort(), next(), prev() and each().

Object

Use the new statement to generate an object:
class foo
{
function do_foo ()
{
echo "Doing foo.";
}
}
$bar = new foo;
$bar->do_foo();

Change variable type

Mentioned in the PHP manual : "PHP does not support (and does not require) defining the variable type directly when declaring the variable; the variable type will be determined based on the situation in which it is used. If you assign the variable var to a string, then it becomes a string. If you assign an integer value to it, it becomes an integer. "

$foo = "0"; // $foo is a string (ASCII 48)
$foo++; / / $foo is the string "1" (ASCII 49)
$foo += 1; // $foo is now an integer (2)
$foo = $foo + 1.3; // $foo is a double Precision number (3.3)
$foo = 5 + "10 Little Piggies"; // $foo is an integer (15)
$foo = 5 + "10 Small Pigs"; // $foo is an integer (15)

If you want to forcefully convert the variable type, you can use the same function settype() as in C language.

4.2 Variables and Constants

You may have noticed that variables are prefixed with a dollar sign ($). All variables are local variables. In order to use external variables in the defined function, use the global statement. And if you want to limit the scope of the variable to the function, use the static statement.
$g_var = 1; // Global scope
function test()
{
global $g_var; // This way global variables can be declared
}

More More advanced is the variable representation of variables. Please refer to the PHP manual. This can sometimes be useful.

PHP has many built-in defined variables. You can also use the define function to define your own constants, such as define("CONSTANT", "value").

4.3 Operators

PHP has the commonly seen operators in C, C++ and Java.The precedence of these operators is also consistent. Assignment also uses "=".

Arithmetic and characters

There is only one operator related to characters:
$a + $b: Add
$a - $b: Subtract
$ a * $b: Multiply
$a / $b: Divide
$a % $b: Modulo (remainder)
$a. $b: String concatenation

logical sum The comparison

logical operators are:
$a || $b: or
$a or $b: or
$a && $b: with
$a and $ b: with
$a xor $b: exclusive or (true when $a or $b is true, false when both are the same)
! $a: non-
comparison operators are:
$a == $b: equal
$a != $b: not equal
$a < $b: less than
$a <= $b: less than or equal to
$a > $b : Greater than
$a >= $b : Greater than or equal to
Like C, PHP also has a triple operator (?:). Bit operators also exist in PHP.

Priority

Just like C and Java!

4.4 Control flow structure

 PHP has the same flow control as C. I will briefly introduce it below.

if, else, elseif, if(): endif

if (expression one)
{
. . .
}
elseif (expression 2)
{
. . .
}
else
{
. . .
}
// Or like Python
if (expression 1) :
. . . .
. . .
elseif (Expression 2) :
. . . .
else :
. . . .
endif ;

Loops. while, do..while, for

while (expression)
{
. . .
}
do
{
. . .
}
while (expression);
for (expression one; expression two; expression three)
{
. . .
}
/ / Or like Python
while (expr) :
. . .
endwhile ;

switch

switch is the best for multiple if-elseif-else structures Replacement:
switch ($i)
{
case 0:
print "i equals 0";
case 1:
print "i equals 1";
case 2:
print "i equals 2";
}

break, continue

break breaks the current loop control structure.
continue is used to jump out of the remaining current loop and continue executing the next loop.

require, include

  Just like #include preprocessing in C. The file you specify in require will replace its location in the main file. When referencing a file conditionally, you can use include(). This allows you to split complex PHP files into multiple files and reference them separately when needed.

4.5 Function

You can define your own function like the following example. The return value of the function can be any data type:
function foo (variable name one, variable name two, . . . , variable name n)
{
echo "Example function.n";
return $retval;
}

All PHP code can appear in function definitions, even definitions of other functions and classes. Functions must be defined before being referenced.

4.6 Classes

Use class models to create classes. You can refer to the detailed explanation of classes in the PHP manual.
class Employee
{
var $empno; // Number of employees
var $empnm; // Employee name

function add_employee($in_num, $in_name)
{
$this->empno = $in_num;
$this->empnm = $in_name;
}

function show()
{
echo "$ this->empno, $this->empnm";
return;
}

function changenm($in_name)
{
$this->empnm = $ in_name;
}
}

$sbabu = new Employee;
$sbabu->add_employee(10,"sbabu");
$sbabu->changenm(" babu");
$sbabu->show();

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/317007.htmlTechArticleGetting Started with PHP 4.1 Data Types PHP supports integers, floating point numbers, strings, arrays and objects. Variable types are usually not determined by the programmer but by the PHP runtime (what a relief!). ...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

See all articles