Web Design and Programming 2 Lecture 2 Dr
Web Design and Programming 2 Lecture 2 Dr. Mohammed Rasad
Outlines 2 PHP Data Types PHP String PHP Constans PHP Operators
Lectures download 3 URL: https: //drive. google. com/drive/folders/1 Kzh. LP Pu 3 h. BK 5 c. E 5 CAv 4 r. MRRUe. Wx 6 Dy. LS or Short link: http: //shorturl. at/oqry. W or
PHP Data Types 4 Just like Java. Script, PHP has data types. Like Java. Script, PHP is known as a “loosely typed” language. That means it decides the data type dynamically. This means variables storing data can change types.
PHP Data Types 5 Variables can store data of different types, and different data types can do different things. PHP supports the following data types: String Integer Float (floating point numbers - also called double) Boolean Array Object NULL Resource
PHP Data Types 6
PHP Data Types 7 PHP Integer PHP String PHP Float PHP Boolean
PHP Data Types 8 PHP Array An array stores multiple values in one single variable. $cars is an array. The PHP var_dump() function returns the data type and value:
PHP Data Types 9 PHP Object An object is a data type which stores data and information on how to process that data. In PHP, an object must be explicitly declared. First we must declare a class of object. For this, we use the class keyword. A class is a structure that can contain properties and
PHP Data Types 10 PHP NULL Value Null is a special data type which can have only one value: NULL. A variable of data type NULL is a variable that has no value assigned to it. If a variable is created without a value, it is automatically assigned a value of NULL. Variables can also be emptied by setting the value to NULL:
PHP Strings 11 PHP String Functions strlen() - Return the Length of a String str_word_count() - Count Words in a String
PHP Strings (Cont. ) 12 strrev() strpos() - Reverse a String - Search For a Text Within a String str_replace() - Replace Text Within a String
PHP Constants 13 Constants are like variables except that once they are defined they cannot be changed or undefined. A constant is an identifier (name) for a simple value. The value cannot be changed during the script. A valid constant name starts with a letter or underscore (no $ sign before the constant name). Unlike variables, constants are automatically global across the entire script.
14 Syntax Parameters: name: Specifies the name of the constant value: Specifies the value of the constant case-insensitive: Specifies whether the constant name should be case-insensitive. Default is false
PHP Operators 15 PHP Arithmetic Operators
PHP Operators 16 PHP Assignment Operators
PHP Operators 17 PHP Comparison Operators
PHP Operators 18 PHP Logical Operators
PHP Operators 19 PHP Conditional Assignment Operators
Thank you. .
- Slides: 20