Bài giảng Web Technologies and e-Services - Bài 5, Phần 2: Advanced PHP
More on session variables
• You need to include a call to the session_start() function for each page
on which you want to access the session variables.
• A session will end once you quit the browser (unless you’ve set
appropriate cookies that will persist), or you can call the
session_destroy() function.
• The function session_unset() removes all session variables. If you
want to remove one variable, use the unset($var) function call.
• The default timeout for session files is 24 minutes. It’s possible to
change this timeout.
31 trang |
Chia sẻ: hachi492 | Ngày: 06/01/2022 | Lượt xem: 330 | Lượt tải: 0
Bạn đang xem trước 20 trang tài liệu Bài giảng Web Technologies and e-Services - Bài 5, Phần 2: Advanced PHP, để xem tài liệu hoàn chỉnh bạn click vào nút DOWNLOAD ở trên
ADVANCED PHP
1
Contents
• Class
• Sessions
• PHP and MySQL
Content
Class
3
Object oriented programming in PHP
• PHP, like most modern programming languages (C++, Java, JavaScript, etc.),
supports the creation of objects.
• Creating an object requires you to first define an object class (containing
variables and/or function definitions) and then using the “new” keyword to create
an instance of the object class. (Note that the object must be defined before you
instantiate it.)
<?php
// Assume that the "Person" object has been previously defined. . .
$x = new Person; // creates an instance of the Person class (*no* quotes)
// The object type need not be "hardcoded" into the declaration.
$object_type = 'Person';
$y = new $object_type; // equivalent to $y = new Person;
$z = new Vehicle('Jaguar','green'); // creating an object and passing
// arguments to its constructor
?>
Defining (declaring) a class
• Use the “class” keyword which includes the class name (case-insensitive, but
otherwise following the rules for PHP identifiers). Note: The name “stdClass” is
reserved for use by the PHP interpreter.
<?php
class Person
{
var $name;
function set_name($new_name) {
$this -> name = new_name;
}
function get_name() {
return $this -> name;
}
}
• Use the “$this” variable when accessing properties and functions of the current
object. Inside a method this variable contains a reference to the object on which
the method was called.
Declaring a class (cont.)
• Properties and functions can be declared as “public”, “private”, “protected”
• Note that unless a property is going to be explicitly declared as public,
private, or protected, it need not be declared before being used (like
regular PHP variables).
<?php
class Person
{
protected $name;
protected $age;
function set_name($new_name) {
$this -> name = new_name;
}
function get_name() {
return $this -> name;
}
}
Declaring a class (cont.)
• Classes can also have their own constants defined (using the “const” keyword), can have their
own static properties and functions
• Static functions cannot access the objects properties (i.e. the variable $this is not defined inside
of a static function).
<?php
class HTMLtable {
static function start() {
echo " \n";
}
static function end() {
echo " \n";
}
}
HTMLtable::start();
?>
Accessing properties and methods
• Once you have an object, you access methods and properties (variables) of
the object using the -> notation.
<?php
$me = new Person;
$me -> set_name('Russ');
$name = $me -> get_name();
echo $me -> get_name();
$age = 36;
$me -> set_age($age);
?>
Constructors and destructors
• Constructors are methods that are (generally) used to initialize the object’s
properties with values as the object is created. Declare a constructor function in
an object by writing a function with the name __construct().
<?php
class Person {
protected $name;
protected $age;
function __construct($new_name, $new_age) {
$this -> name = $new_name;
$this -> age = $new_age;
}
// . . . other functions here . . .
}
$p = new Person('Bob Jones', 45);
$q = new Person('Hamilton Lincoln', 67);
?>
• Destructors (defined with a function name of __destructor() ) are called when an
object is destroyed
Inheritance
• Use the “extends” keyword in the class definition to define a
new class that inherits from another.
<?php
class Employee extends Person {
var $salary;
function __construct($new_name, $new_age, $new_salary); {
$this -> salary = $new_salary;
parent::__construct($new_name, $new_age); // call the constructor
// of parent object
}
function update_salary($new_salary) {
$this -> salary = $new_salary;
}
$emp = new Employee('Dave Underwood', 25, 25000);
?>
Inheritance (cont.)
• The constructor of the parent isn’t called unless the child explicitly
references it (as in this previous case).
• You could “hard-code” the call to the parent constructor using the function
call “Person::__construct($new_name, $new_age);”
• You can use the “self” keyword to ensure that a method is called on the
current class (if a method might be subclassed), in this style
self::method();
• To check if an object is of a particular class, you can use the instanceof
operator.
More on classes
• You can also define interfaces (for which any class that uses that interface
must provide implementations of certain methods), and you can define
abstract classes or methods (that must be overridden by its children).
• The keyword “final” can be used to denote a method that cannot be
overridden by its children.
class Person {
var $name;
final function get_name() {
return $this -> name;
}
}
Session
13
PHP sessions
• By default, HTML and web servers don’t keep track of information entered
on a page when the client’s browser opens another page.
• Sessions help solve this problem by maintaining data during a user’s visit,
and can store data
• Servers keep track of users’ sessions by using a session identifier, which
is generated by the server when a session starts and is then used by the
browser when it requests a page from the server. This session ID can be
sent through a cookie (the default behavior) or by passing the session ID
in the URL string.
• Sessions only store information temporarily
PHP sessions (cont.)
• To start a session, use the function session_start() at the beginning of your PHP script before you
store or access any data. For the session to work properly, this function needs to execute before
any other header calls or other output is sent to the browser.
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"">
Session example
<?php
include_once ('object.php'); // Includes definition of the Person class
$_SESSION['hello'] = 'Hello world';
echo $_SESSION['hello'] . "\n";
$_SESSION['one'] = 'one';
$_SESSION['two'] = 'two';
$me = new Person("Russ", 36, 2892700);
$_SESSION['name'] = $me->get_name();
echo "Testing " . $_SESSION['one'] .", " . $_SESSION['two'] . ", " . $me->get_number() . " . . .\n";
?>
view the output page
Using session variables
• Once a session variable has been defined, you can access it from other pages.
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"">
Session example 2
<?php
echo "Welcome to a new page ". $_SESSION['name'] "!\n";
echo "Hope you enjoy your stay! ";
?>
Back to regular HTML text...
view the output page
More on session variables
• You need to include a call to the session_start() function for each page
on which you want to access the session variables.
• A session will end once you quit the browser (unless you’ve set
appropriate cookies that will persist), or you can call the
session_destroy() function.
• The function session_unset() removes all session variables. If you
want to remove one variable, use the unset($var) function call.
• The default timeout for session files is 24 minutes. It’s possible to
change this timeout.
Deleting all session variables
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"">
Session example 3
<?php
echo "Deleting all session variables using session_unset(); \n";
session_unset();
echo "Now the session variables are gone. \n";
if (isset($_SESSION['name']))
{ echo $_SESSION['name'] . "\n"; }
else
{ echo "Session variable is not here."; }
?>
view the output page
PHP and MySQL
19
Putting Content into Your Database with PHP
Host: mysql
Database: martin
Username: martin
Password: ----
• Connect to the database server and login (this is the PHP command to do so)
mysql_connect("host","username","password");
• Choose the database
mysql_select_db("database");
• Send SQL queries to the server to add, delete, and modify data
mysql_query("query"); (use the exact same query string as you would
normally use in SQL, without the trailing semi-colon)
• Close the connection to the database server (to ensure the information is stored properly)
mysql_close();
Student Database: data_in.php
Putting Data in the DB
<?php
/*insert students into DB*/
if(isset($_POST["submit"])) {
$db = mysql_connect("mysql", "martin");
mysql_select_db("martin");
$date=date("Y-m-d"); /* Get the current date in the right SQL format */
$sql="INSERT INTO students VALUES(NULL,'" . $_POST["f_name"] . "','" . $_POST["l_name"] . "'," .
$_POST["student_id"] . ",'" . $_POST["email"] . "','" . $date . "'," . $_POST["gr"] . ")"; /*
construct the query */
mysql_query($sql); /* execute the query */
mysql_close();
echo"Thank you. The data has been entered. \n";
echo'Back to registration' . "\n";
echo'View the student lists' ."\n";
}
Student Database: data_in.php
else {
?>
Enter your items into the database
First Name:
Last Name:
ID:
email:
Group:
1
2
3
<?php
} /* end of "else" block */
?>
view the output page
Getting Content out
• Send an SQL query to the server to select data from the database into an array
$result=mysql_query("query");
• Either, look into a row and a fieldname
$num=mysql_numrows($result);
$variable=mysql_result($result,$i,"fieldname");
§ Or, fetch rows one by one
$row=mysql_fetch_array($result);
• Close the connection to the database server
mysql_close();
Student Database: data_out.php
Getting Data out of the DB
Student Database
Order the full list of students by
date,
id, or
by surname.
Or only see the list of students in group
1
2
3
Student Database: data_out.php<?php
$db = mysql_connect("mysql","martin");
mysql_select_db("martin", $db);
switch($_GET["order"]){
case 'date': $sql = "SELECT * FROM students ORDER BY date"; break;
case 'student_id': $sql = "SELECT * FROM students ORDER BY student_id"; break;
case 'l_name': $sql = "SELECT * FROM students ORDER BY l_name"; break;
default: $sql = "SELECT * FROM students"; break;
}
if(isset($_POST["submit"])){
$sql = "SELECT * FROM students WHERE gr=" . $_POST["gr"];
}
$result=mysql_query($sql); /* execute the query */
while($row=mysql_fetch_array($result)){
echo " Name: " . $row["l_name"] . ', ' . $row["f_name"] . " \n";
echo " ID: " . $row["student_id"] . " Email: " . $row["email"] .
" Group: " . $row["gr"] . " Posted: " . $row["date"] . " \n";
}
mysql_close();
?>
view the output page
More on PHP and SQL
To increase security of your PHP/SQL setup (and to make it easier to change the database
you use), it’s recommended that you build an “include” file that will have the information you
use to connect to the database.
<?php
/* Save this as db_login.php (or whatever you like) and include it
in your php script. */
// Here’s the information to connect to the database.
$db_host = 'mysql';
$db_database='martin';
$db_username='martin';
$db_password='xxxxx';
?>
If someone tries to view this file through their browser, the PHP interpreter will process it
and return a blank page to the user (there’s no HTML in the file).
Connecting to the database
Now you can build your PHP script as follows (using the commands that we discussed
previously):
<?php
require_once ('db_login.php');
$connection = mysql_connect($db_host, $db_username, $db_password);
if (!$connection) /* check if the connection was actually successful */
{
exit("Could not connect to the database: " .
htmlspecialchars(mysql_error()) );
}
else {
// more statements here. . .
}
?>
Note: The function ‘htmlspecialchars()’ converts special characters in a string into their HTML
escape sequences (like ‘&’ into ‘&’ and so forth).
This can also be used to increase the security of your code by and help thwart attacks on
your database by passing it information that your client has submitted before trying to insert
it in your database.
MySQL queries inside of PHP
Your mySQL queries from a PHP script are the same as they are as when you’re
using the mySQL program from the command line with one difference the
queries do not have a semi-colon at the end.
<?php
// Assuming a valid database connection has been established.
// Build the query string by assigning variables...
$query = $select . $column . $from . $tables . $where;
$result = mysql_query($query);
if(!$result) {
exit("Could not query the database: " .
htmlspecialchars(mysql_error()) );
}
else {
// process the data
}
?>
Processing the results of a query
• There are two main PHP methods to fetch the results of an SQL query, these being
‘mysql_fetch_row()’ and ‘mysql_fetch_array()’.
<?php
// Assuming a database connection, and a valid query string.
$result = mysql_query( $query );
while ($result_row = mysql_fetch_row($result)) {
echo $result_row[2] . '';
}
?>
• The ‘mysql_fetch_row()’ command fetches the query results as an enumerated array
(an array that uses numerical indices), one row at a time, returning FALSE when there
are no more rows (ending the ‘while’ loop in this case).
Processing the results of a query (cont.)
• mysql_fetch_array can get a row of results
• mysql_fetch_array($sql, mode_fetch)
• MYSQL_ASSOC: returns associcate arary (using the column names
in the query)
• MYSQL_NUM: returns enumerated array (same mysql_fetch_row())
• MYSQL_BOTH (default): returns an array with both types.
31
Các file đính kèm theo tài liệu này:
- bai_giang_web_technologies_and_e_services_bai_5_phan_2_advan.pdf