Presentation is loading. Please wait.

Presentation is loading. Please wait.

PHP1-1 PHP Xingquan (Hill) Zhu

Similar presentations


Presentation on theme: "PHP1-1 PHP Xingquan (Hill) Zhu"— Presentation transcript:

1 PHP1-1 PHP Xingquan (Hill) Zhu xqzhu@cse.fau.edu

2 PHP1-2 PHP  PHP overview  PHP General Syntactic Characteristics  PHP output to browser  Primitives, Operations, and Expressions  Control Statement  Array  Function  File access  Cookie  Session  Form process

3 PHP1-3 Origins and use of PHP  Origins  Rasmus Lerdorf – 1994 Developed to allow him to track visitors to his Web site  An open-source product  An acronym for Personal Home Page, or PHP: Hypertext Preprocessor  PHP is a server-side scripting language whose scripts are embedded in HTML documents  Similar to JavaScript, but on the server side  Used for form handling, file processing, and database access

4 PHP1-4 Origins and use of PHP  PHP is “A” server-side scripting language  One of an alternative to CGI, ASP.NET (Active server pages), and JSP (Java Server Pages)  The PHP processor has two modes:  copy (XHTML) and interpret (PHP)  PHP syntax is similar to that of JavaScript  PHP is dynamically typed  PHP is a interpreted language  Programs may be executed from source form  Each instruction is immediately translated and acted upon by the computer

5 PHP1-5 General Syntactic Characteristics  PHP code can be specified in an XHTML document internally or externally:myphp.phpmyphp.php  Internally: <?php... ?>  Can appear almost everywhere  Externally: include ("myScript.inc") The included file can have both PHP and XHTML, if the file has PHP, the PHP must be in, even if the include is already in –Variable conflict  PHP mode of operation  Copy mode  Interpret mode  Every variable name begin with a $  Case sensitive  A letter or an underscore followed by any number of letters, digits, or underscores.

6 PHP1-6 General Syntactic Characteristics  Comments - three different kinds (Java and Perl) //... #... /*... */  Statements are terminated with semicolons  Compound statements are formed with braces  Unless used as the body of a function definition, compound statements cannot be blocks (cannot define locally scoped variables)

7 PHP1-7 Output  Output from a PHP script is HTML that is sent to the browser  HTML is sent to the browser through standard output  There are three ways to produce output: echo, print, and printf  echo and print take a string, but will coerce other values to strings $name=“John”; $age=20;  echo “$name“, “$age”; (any number of parameters)  echo(“my name: $name, my age: $age”); (only one)  print “$name and $age";  print (“my name: $name, my age: $age”);  printf(“my name: %s, my age: %s”, $name, $age);  Echo does not return a value; print return 1 or 0; printf returns the length of the outputted string Output.php

8 PHP1-8 Var_dump  Dumps information about a variable  $var1=3.1; Var_dump($var1); Float(3.1);  $var2=“3.1”; Var_dump($var2); String(“3.2”);

9 PHP1-9 PHP  PHP overview  PHP General Syntactic Characteristics  PHP Output to browser  Primitives, Operations, and Expressions  Control Statement  Array  Function  File access  Cookie  Session  Form process

10 PHP1-10 Primitives, Operations, and Expressions  Variables primitive.php primitive.php  No type declarations  An unassigned (unbound) variable has the value: NULL  The unset function sets a variable to NULL  The IsSet function is used to determine whether a variable is NULL  error_reporting(15); - prevents PHP from using unbound variables  PHP has many predefined variables, including the environment variables of the host operating system  You can get a list of the predefined variables by calling phpinfo() in a script

11 PHP1-11 Primitives, Operations, and Expressions  There are eight primitive types:  Four scalar types: Boolean, integer, double, and string  Two compound types: array and object  Two special types: resource and NULL

12 PHP1-12 Primitives, Operations, and Expressions  Stringsstring.phpstring.php  Characters are single bytes  The length of a string is limited only by the available memory  String literals use single or double quotes Single-quoted string literals –Embedded variables are NOT interpolated –Embedded escape sequences are NOT recognized Double-quoted string literals –Embedded variables ARE interpolated –If there is a variable name in a double quoted string but you don’t want it interpolated, it must be backslashed –Embedded escape sequences ARE recognized  For both single- and double-quoted literal strings, embedded delimiters must be backslashed  String character access $str=“Apple” $str{2}=“p”

13 PHP1-13 Primitives, Operations, and Expressions  Boolean boolean.phpboolean.php  values are true and false (case insensitive)  0 and "" and "0" are false; others are true But “0.0” is true  Arithmetic Operators and Expressions  Usual operators  If the result of integer division is not an integer, a double is returned  Any integer operation that results in overflow produces a double  The modulus operator coerces its operands to integer, if necessary  Arithmetic functions  floor, ceil, round, abs, min, max, rand, etc. Round($val, x);

14 PHP1-14 Primitives, Operations, and Expressions  Scalar Type Conversionsconversion.phpconversion.php  String to numeric If the string contains an e or an E, it is converted to double; otherwise to integer If the string does not begin with a sign or a digit, zero is used  Explicit conversions – casts  e.g., (int)$total or intval($total) or settype($total, "integer") Intval($total), doubleval($total), strval($total);  The type of a variable can be determined with gettype or is_type  gettype($total) - it may return "unknown"  is_integer($total) – a predicate function is_double(), is_bool(), is_string()

15 PHP1-15 PHP  PHP overview  PHP General Syntactic Characteristics  PHP Output to browser  Primitives, Operations, and Expressions  Control Statement  Array  Function  File access  Cookie  Session  Form process

16 PHP1-16 Control Statement  Control Expressions  Relational operators - same as JavaScript >, =, <=, !=, ==  Boolean operators And, or, xor, !, &&, and ||  Selection statements  if, elseif, else  switch - as in C The switch expression type must be integer, double, or string  Loop statements  while - just like C  do-while - just like C  for - just like C  foreach - discussed later

17 PHP1-17 Control Statement  break  in any for, foreach, while, do-while, or switch  continue  in any loop  Alternative compound delimiters – more readability if(...):... endif; Powers.php

18 PHP1-18 Intermingle  XHTML can be intermingled with PHP <?phpIntermingle.phpIntermingle.php $a = 7; $b = 7; if ($a == $b) { $a = 3 * $a; ?> At this point, $a and $b are equal So, we change $a to three times $a <?php } ?>

19 PHP1-19 PHP  PHP overview  PHP General Syntactic Characteristics  PHP Output to browser  Primitives, Operations, and Expressions  Control Statement  Array  Function  File access  Cookie  Session  Form process

20 PHP1-20 Array  A PHP array is really a mapping of keys to values, where the keys can be numbers or strings  Array creation  Use the array() construct, which takes one or more key => value pairs as parameters and returns an array of them The keys are non-negative integer literals or string literals The values can be anything e.g., $list = array(0 => "apples", 1 => "oranges", 2 => "grapes") This is a “regular” array of strings  If a key is omitted and there have been integer keys, the default key will be the largest current key + 1  If a key is omitted and there have been no integer keys, 0 is the default key  If a key appears that has already appeared, the new value will overwrite the old one

21 PHP1-21 Array  Arrays can have mixed kinds of elements  e.g., $list = array("make" => "Cessna", "model" => "C210", "year" => 1960, 3 => "sold"); $list = array(1, 3, 5, 7, 9); $list = array(5, 3 => 7, 5 => 10, "month" => "May"); $colors = array('red', 'blue', 'green', 'yellow'); Array.php

22 PHP1-22 Access Array  Accessing array elements – use brackets  $list[4] = 7;  $list["day"] = "Tuesday";  $list[] = 17;  If an element with the specified key does not exist, it is created  Where??  If the array does not exist, the array is created  The keys or values can be extracted from an array  $highs = array("Mon" => 74, "Tue" => 70, "Wed" => 67, "Thu" => 62, "Fri" => 65);  $days = array_keys($highs);  $temps = array_values($highs);arraykey.phparraykey.php

23 PHP1-23 Dealing with Arrays  An array can be deleted with unset  unset($list);  unset($list[4]); # No index 4 element now  is_array($list)  returns true if $list is an array  in_array(17, $list)  returns true if 17 is an element of $list  explode(" ", $str) creates an array with the values of the words from $str, split on a space  implode(" ", $list) creates a string of the elements from $list, separated by a space Explode.php

24 PHP1-24 Sequential access to array elements  current and nextaccessarray.phpaccessarray.php $colors = array("Blue", "red", "green", "yellow"); $color = current($colors); print("$color "); while ($color = next($colors)) print ("$color ");  foreach (array_name as scalar_name) {... } foreach ($colors as $color) { print "Is $color your favorite color? "; } Is red your favorite color? Is blue your favorite color? Is green your favorite color? Is yellow your favorite color?

25 PHP1-25 Sequential access to array elements  foreach can iterate through both keys and values:  foreach ($colors as $key => $color) { … }  Inside the compound statement, both $key and $color are defined  $ages = array("Bob" => 42, "Mary" => 43);  foreach ($ages as $name => $age) print("$name is $age years old "); Keyarray.php

26 PHP1-26 Viewing Client/Server Environment variables  Environment variablesphpinfo.phpphpinfo.php  Provide information about execution environment Type of web browser Type of server Details of HTTP connection  Stored as array in PHP $_ENV

27 PHP1-27 PHP  PHP overview  PHP General Syntactic Characteristics  PHP Output to browser  Primitives, Operations, and Expressions  Control Statement  Array  Function  File access  Cookie  Session  Form process

28 PHP1-28 User-Defined Functions  Syntactic form: function function_name(formal_parameters) { … }  General Characteristics  Functions need not be defined before they are called (in PHP 3, they must)  Functions can have a variable number of parameters  Function names are NOT case sensitive  Overloading is not permitted  The return function is used to return a value If there is no return, there is no returned value

29 PHP1-29 User-Defined Functions  Parameters  If the caller sends too many actual parameters, the subprogram ignores the extra ones  If the caller does not send enough parameters, the unmatched formal parameters are unbound  The default parameter passing method is pass by value (one- way communication)parameters.phpparameters.php  To specify pass-by-reference, precede an ampersand to the formal parameter function addOne(&$param) { $param++; } $it = 16; addOne($it); // $it is now 17

30 PHP1-30 User-Defined Functions  Parameters  If the function does not specify its parameter to be pass by reference, you can precede an ampersand to the actual parameter and still get pass-by-reference semantics function subOne($param) { $param--; } $it = 16; subOne(&$it); // $it is now 15  Return Values  Any type may be returned, including objects and arrays, using the return If a function returns a reference, the name of the function must have a prepended ampersand function &newArray($x) { … }

31 PHP1-31 User-Defined Function  The Scope of Variables scope.php scope.php  An undeclared variable in a function has the scope of the function  If you do want to access a nonlocal variable, it must be declared to be global, as in global $sum;  The Lifetime of Variablesstatic.phpstatic.php  Normally, the lifetime of a variable in a function is from its first appearance to the end of the function’s execution static $sum = 0; # $sum is static Its lifetime begins when the variable is first used in the first execution of the function, ends when the script execution ends. (browser leaves the document in which the php script is embedded)

32 PHP1-32 PHP  PHP overview  PHP General Syntactic Characteristics  PHP Output to browser  Primitives, Operations, and Expressions  Control Statement  Array  Function  File access  Cookie  Session  Form process


Download ppt "PHP1-1 PHP Xingquan (Hill) Zhu"

Similar presentations


Ads by Google