1. Trang chủ
  2. » Luận Văn - Báo Cáo

Lecture E-Commerce - Chapter 30: PHP (part II)

75 31 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 75
Dung lượng 451,35 KB

Các công cụ chuyển đổi và chỉnh sửa cho tài liệu này

Nội dung

After studying this chapter you will be able to understand: PHP comparison operators, PHP conditional statements, PHP - The if...else statement, the PHP switch statement, the PHP while loop, the PHP foreach loop,...

Trang 1

CSC 330 E-Commerce

Teacher

Ahmed Mumtaz Mustehsan

GM-IT CIIT Islamabad

Virtual Campus, CIIT

COMSATS Institute of Information Technology

T2-Lecture-10

Trang 2

PHP Part-II T2-Lecture-10

For Lecture Material/Slides Thanks to: www.w3schools.com

Trang 3

PHP Comparison Operators

The PHP comparison operators are used to compare two values (number or string):

== Equal $x == $y True if $x is equal to $y

=== Identical $x === $y True if $x is equal to $y, and they are of the same

type

!= Not equal $x != $y True if $x is not equal to $y

<>  Not equal $x <> $y True if $x is not equal to $y

!== Not identical $x !== $y True if $x is not equal to $y, or they are not of the

same type

Greater than $x > $y True if $x is greater than $y

Less than $x < $y True if $x is less than $y

>= Greater than or equal to $x >= $y True if $x is greater than or equal to $y

T2-Lecture-9 Ahmed Mumtaz Mustehsan www.w3schools.com 1-3

Trang 4

Example of Comparison Operators

Trang 5

PHP Logical Operators

Operator Name Example Result

and And $x and $y True if both $x and $y are true

or Or $x or $y True if either $x or $y is true

xor Xor $x xor $y True if either $x or $y is true, but not both

&& And $x && $y True if both $x and $y are true

|| Or $x || $y True if either $x or $y is true

! Not !$x True if $x is not true

Trang 6

PHP Array Operators

The PHP array operators are used to compare

arrays:

Operator Name Example Result

+ Union $x + $y Union of $x and $y (but duplicate

keys are not overwritten)

== Equality $x == $y True if $x and $y have the same

key/value pairs

=== Identity $x === $y

True if $x and $y have the same key/value pairs in the same order and of the same types

!= Inequality $x != $y True if $x is not equal to $y

<> Inequality $x <> $y True if $x is not equal to $y

Trang 7

The example below shows the different results of

using the different array operators:

<?php

$x = array("a" => "red", "b" => "green");

$y = array("c" => "blue", "d" => "yellow");

$z = $x + $y; // union of $x and $y

Trang 8

PHP Conditional Statements

Very often when you write code, you want to perform different actions for different decisions You can use conditional statements in your code to do this

In PHP we have the following conditional statements:

if statement - executes some code only if a specified

condition is true

if else statement - executes some code if a

condition is true and another code if the condition is false

if elseif else statement - selects one of several

blocks of code to be executed

switch statement - selects one of many blocks of

code to be executed

Trang 11

PHP - The if else Statement

Use the if else statement to execute some code if a 

Trang 13

PHP - The if elseif else Statement

Use the if elseif else statement to select one of 

The example below will output "Have a good

morning!" if the current time is less than 10, and

"Have a good day!" if the current time is less than 20 Otherwise it will output "Have a good night!":

Trang 15

The PHP switch Statement

Use the switch statement to select one of many 

Trang 16

The PHP switch Statement

This is how it works: First we have a single

expression n (most often a variable), that is evaluated

once The value of the expression is then compared with the values for each case in the structure If there

is a match, the block of code associated with that

case is executed Use break to prevent the code from

running into the next case automatically

Thedefault statement is used if no match is found.

Trang 18

PHP Loops

Often when you write code, you want the same block

of code to run over and over again in a row Instead

of adding several almost equal code-lines in a script,

we can use loops to perform a task like this

In PHP, we have the following looping statements:

while - loops through a block of code as long as the

specified condition is true

do while - loops through a block of code once, and

then repeats the loop as long as the specified

Trang 19

The PHP while Loop

The while loop executes a block of code as long as the specified condition is true

Syntax

while (condition is true) {

code to be executed;

}

The example below first sets a variable $x to 1

($x=1;) Then, the while loop will continue to run as long as $x is less than, or equal to 5 $x will increase

by 1 each time the loop runs ($x++;):

Trang 21

The PHP do while Loop

The do while loop will always execute the block of code once, it will then check the condition, and repeat the loop while the specified condition is true

Syntax

do {

code to be executed;

} while (condition is true);

The example below first sets a variable $x to 1

($x=1;) Then, the do while loop will write some

output, and then increment the variable $x with 1

Then the condition is checked (is $x less than, or

equal to 5?), and the loop will continue to run as long

as $x is less than, or equal to 5:

Trang 23

The PHP do while Loop

Notice that in a do while loop the condition is tested AFTER executing the statements within the loop This means that the do while loop would execute its

statements at least once, even if the condition fails

the first time

The example below sets the $x variable to 6, then it

runs the loop, and then the condition is checked:

Trang 24

The PHP for Loop

The for loop is used when you know in advance how many times the script should run

init counter: Initialize the loop counter value

test counter: Evaluated for each loop iteration If it

evaluates to TRUE, the loop continues If it evaluates

to FALSE, the loop ends

increment counter: Increases the loop counter value

Trang 26

The PHP foreach Loop

The foreach loop works only on arrays, and is used to loop through each key/value pair in an array

The following example demonstrates a loop that will output the values of the given array ($colors):

Trang 28

PHP User Defined Functions

Besides the built-in PHP functions, we can create our own functions

A function is a block of statements that can be used repeatedly in a program

A function will not execute immediately when a page loads

A function will be executed by a call to the function

Trang 29

Create a User Defined Function in PHP

A user defined function declaration starts with the

Note: A function name can start with a letter or

underscore (not a number)

Trang 30

In the example below, we create a function named

"writeMsg()" The opening curly brace ( { ) indicates the beginning of the function code and the closing

curly brace ( } ) indicates the end of the function The function outputs "Hello world!" To call the function,

just write its name:

Trang 31

PHP Function Arguments

Information can be passed to functions through

arguments An argument is just like a variable

Arguments are specified after the function name,

inside the parentheses You can add as many

arguments as you want, just seperate them with a

comma

The following example has a function with one

argument ($fname) When the familyName() function

is called, we also pass along a name (e.g Jani), and the name is used inside the function, which outputs several different first names, but an equal last name:

Trang 33

The following example has a function with two

arguments ($fname and $year):

Trang 34

PHP Default Argument Value

The following example shows how to use a default

parameter If we call the function setHeight() without arguments it takes the default value as argument:

Trang 35

PHP Functions - Returning values

To let a function return a value, use the return

Trang 36

What is an Array?

An array is a special variable, which can hold more than one value at a time

If you have a list of items (a list of car names, for

example), storing the cars in single variables could

look like this:

$cars1="Volvo";

$cars2="BMW";

$cars3="Toyota";

Trang 37

What is an Array?

However, what if you want to loop through the cars

and find a specific one? And what if you had not 3

cars, but 300?

The solution is to create an array!

An array can hold many values under a single name, and you can access the values by referring to an

index number

Trang 38

Create an Array in PHP

In PHP, the array() function is used to create an array:

array();

In PHP, there are three types of arrays:

Indexed arrays - Arrays with numeric index

Associative arrays - Arrays with named keys

Multidimensional arrays - Arrays containing one or

more arrays

Trang 39

PHP Indexed Arrays

There are two ways to create indexed arrays:

The index can be assigned automatically (index

Trang 40

The following example creates an indexed array

named $cars, assigns three elements to it, and then prints a text containing the array values:

Trang 41

Get The Length of an Array - The count()

Trang 42

Loop Through an Indexed Array

To loop through and print all the values of an indexed array, you could use a for loop, like this:

Trang 43

PHP Associative Arrays

Associative arrays are arrays that use named keys

that you assign to them

There are two ways to create an associative array:

Trang 44

?>

Trang 45

Loop Through an Associative Array

To loop through and print all the values of an

associative array, you could use a foreach loop, like this:

Trang 46

PHP - Sort Functions For Arrays

In this chapter, we will go through the following PHP array sort functions:

sort() - sort arrays in ascending order

rsort() - sort arrays in descending order

asort() - sort associative arrays in ascending order, according to the value

ksort() - sort associative arrays in ascending order,

according to the key

arsort() - sort associative arrays in descending order, according to the value

krsort() - sort associative arrays in descending order, according to the key

Trang 47

Sort Array in Ascending Order - sort()

The following example sorts the elements of the

$cars array in ascending alphabetical order:

Trang 48

The following example sorts the elements of the

$numbers array in ascending numerical order:

Trang 49

Sort Array in Descending Order - rsort()

The following example sorts the elements of the

$cars array in descending alphabetical order:

Trang 50

The following example sorts the elements of the

$numbers array in descending numerical order:

<?php

$numbers=array(4,6,2,22,11);

rsort($numbers);

?>

Trang 51

Sort Array in Ascending Order, According to

?>

Trang 52

Sort Array in Ascending Order, According to

?>

Trang 53

Sort Array in Descending Order, According to Value - arsort()

The following example sorts an associative array in descending order, according to the value:

Example

<?php

$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");arsort($age);

?>

Trang 54

Sort Array in Descending Order, According to Key - krsort()

The following example sorts an associative array in descending order, according to the key:

Example

<?php

$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");krsort($age);

?>

Trang 55

PHP Global Variables - Superglobals

Several predefined variables in PHP are

"superglobals", which means that they are always

accessible, regardless of scope - and you can access them from any function, class or file without having to

do anything special

The PHP superglobal variables are:

• $GLOBALS • $_SERVER • $_REQUEST

• $_POST • $_GET • $_FILES

• $_ENV • $_COOKIE • $_SESSION

Trang 56

PHP $GLOBALS

$GLOBALS is a PHP super global variable which is used to access global variables from anywhere in the PHP script (also from within functions or methods)

PHP stores all global variables in an array called

$GLOBALS[index] The index holds the name of the

variable

The example below shows how to use the super

global variable $GLOBALS:

Trang 58

PHP $_SERVER

$_SERVER is a PHP super global variable which

holds information about headers, paths, and script

locations

The example below shows how to use some of the

elements in $_SERVER:

Trang 60

T2-Lecture-9 Ahmed Mumtaz Mustehsan www.w3schools.com

Trang 62

In this example, we point to this file itself for

processing form data If you wish to use another PHP file to process form data, replace that with the

filename of your choice Then, we can use the super global variable $_REQUEST to collect the value of

the input field:

Trang 64

PHP $_POST

PHP $_POST is widely used to collect form data after submitting an HTML form with method="post"

$_POST is also widely used to pass variables

The example above shows a form with an input field and a submit button When a user submits the data

by clicking on "Submit", the form data is sent to the file specified in the action attribute of the <form> tag

In this example, we point to this file itself for

processing form data

Then, we can use the super global variable $_POST

to collect the value of the input field:

Trang 65

PHP $_GET

PHP $_GET can also be used to collect form data

after submitting an HTML form with method="get"

$_GET can also collect data sent in the URL

Assume we have an HTML page that contains a

hyperlink with parameters:

Trang 66

PHP $_GET

When a user clicks on the link "Test $GET", the

parameters "subject" and "web" is sent to

"test_get.php", and you can then acces their values in

"test_get.php" with $_GET

The example below shows the code in "test_get.php":Example

Trang 67

<form action="welcome.php" method="post">

Name: <input type="text" name="name"><br>

E-mail: <input type="text" name="email"><br>

<input type="submit">

</form>

</body>

</html>

Trang 68

PHP – HTTP POST

When the user fills out the form above and clicks the submit button, the form data is sent for processing to

a PHP file named "welcome.php" The form data is

sent with the HTTP POST method

To display the submitted data you could simply echo all the variables The "welcome.php" looks like this:

Trang 69

PHP – HTTP POST

<html>

<body>

Welcome <?php echo $_POST["name"]; ?><br>

Your email address is: <?php echo

Trang 70

<form action="welcome_get.php" method="get">

Name: <input type="text" name="name"><br>

E-mail: <input type="text" name="email"><br>

<input type="submit">

</form>

</body>

</html>

Trang 71

PHP – HTTP GET

and "welcome_get.php" looks like this:

<html>

<body>

Welcome <?php echo $_GET["name"]; ?><br>

Your email address is: <?php echo $_GET["email"]; ?

Trang 72

GET vs POST

Both GET and POST create an array (e.g array( key

=> value, key2 => value2, key3 => value3, )) This array holds key/value pairs, where keys are the

names of the form controls and values are the input data from the user

Both GET and POST are treated as $_GET and

$_POST These are superglobals, which means that they are always accessible, regardless of scope - and you can access them from any function, class or file without having to do anything special

$_GET is an array of variables passed to the current script via the URL parameters

$_POST is an array of variables passed to the current script via the HTTP POST method

Ngày đăng: 18/01/2020, 18:04