SlideShare a Scribd company logo
Features of PHP PHP stands for Hypertext Preprocessor“.  It is a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.  It is an interpreted language. There are three main fields where PHP scripts are used.  Server side scripting Command line scripting.  Writing client-side GUI applications.For this PHP-GTK is used.  PHP-GTK is an extension for the PHP programming language that implements language bindings for GTK+. It provides an object-oriented interface to GTK+ classes and functions and greatly simplifies writing client-side cross-platform GUI applications.
PHP can be used on all major operating systems, including Linux, many Unix variants, Microsoft Windows, Mac OS X  etc.  PHP has also support for most of the web servers today. This includes Apache, Microsoft Internet Information Server, Personal Web Server, Netscape and iPlanet servers, Oreilly Website Pro server  and many others.
You also have the choice of using procedural programming or object oriented programming, or a mixture of them.  PHP does more than just generating dynamic web-pages.  PHP's abilities includes: Generating images dynamically PDF files  Flash movies Compression Download and upload XML support
PHP also has support for talking to other services using protocols such as LDAP, IMAP, SNMP, NNTP, POP3, HTTP, COM (on Windows) and countless others.  You can also open raw network sockets and interact using any other protocol.  PHP has support for the WDDX complex data exchange between virtually all Web programming languages. (Support for web services) PHP has support for instantiation of Java objects and using them transparently as PHP objects. You can also use CORBA extension to access remote objects.  e.g. You can use java classes in php.
A sample PHP script <html> <head> <title>PHP Test</title> </head> <body> <?php  echo &quot;<p>Hello World</p>&quot;;  echo phpinfo(); ?> </body> </html>  A call to the  phpinfo()  function returns a lot of useful information about your system and setup such as available predefined variables, loaded PHP modules, and configuration settings.
php syntaxes are similar to C. php is whitespace insensitive. e.g. $four =  2 + 2; php is sometimes case insensitive.  i.e. All variables are case sensitive.
Basics of variable Variables in PHP are represented by a dollar sign followed by the name of the variable. The variable name is case-sensitive. PHP is also context-sensitive like perl.  A valid variable name starts with a letter or underscore, followed by any number of letters, numbers, or underscores.
PHP provides 8 primitive data-types. Four scalar types: boolean integer float string Two compound types array object Two special types: resource NULL PHP,types are associated with values rather than variables. No previous declaration is needed. You can assign value to variable as and when you need it. e.g.  $int_var=15; $str=“string1”;
If you want to check out the type and value of a certain variable, use  var_dump() .  It dumps information about variable. <?php $b = 3.1; $c = true; var_dump($b, $c); ?>  o/p :  float(3.1)  bool(true)  If you want to get type of a variable, then use gettype(). echo gettype($bool); // prints out &quot;boolean“ echo gettype($str);  // prints out &quot;string“
To check type of veriables in condition, separate functions are there for each type.  basic syntax is is_type(variable) some of it are is_integer  is_float  is_numeric  is_string is_scalar is_object is_array  It returns true if variable will be of that specific type. Otherwise it returns false. If you would like to force a variable to be converted to a certain type, you may either cast the variable or use the  settype()  function on it.  It returns true on success and false on failure. settype($var, &quot;integer&quot;);
In php, default error reporting setting allows you to use unassigned variables without errors. To change this setting you should set error reporting level to E_ALL in your php.ini file. error_reporting(E_ALL); To check if variable is assigned a value or not, use isset($var) . PHP variables are global in scope. You can use it throughout your program.
To define boolean variable, $flag=True; To define string variable, $str=“string variable”; String can be enclosed in double quotes, single quotes or you can also use heredoc operator. $str = <<<EOF Example of string spanning multiple lines using heredoc syntax. EOF; To define constant, define(&quot;MAXSIZE&quot;, 100);
Operators Arithmetic : +,-,/,%,* String . , .=  Assignment operators for all above operators. +=, -= etc , ++ , -- Comparision == , != , <> , > , >= , < , <= , === === returns true if its two operands are having the same value, and they are of the same type.  e.g.  $a=15; $b=15; if( $a === $b) { print “Identical variables”; }
PHP supports one execution operator: backquotes (``).  PHP will attempt to execute the contents of the backquotes as a system command; the output will be returned in a variable. <?php $output = `ls`; echo &quot;<pre>$output</pre>&quot;; ?>
Control Structures if,else,elseif while,for , do..while , for , foreach , break , continue , switch  $i=1; switch ($i) {     case 0:         print &quot;i equals 0&quot;;         break;     case 1:         print &quot;i equals 1&quot;;         break;     case 2:         print &quot;i equals 2&quot;;         break;     default :         print &quot;i equals -1&quot;; } comments .  # , // , /*  */
Ad

More Related Content

What's hot (20)

Lesson 3 php numbers
Lesson 3  php numbersLesson 3  php numbers
Lesson 3 php numbers
MLG College of Learning, Inc
 
PHP Powerpoint -- Teach PHP with this
PHP Powerpoint -- Teach PHP with thisPHP Powerpoint -- Teach PHP with this
PHP Powerpoint -- Teach PHP with this
Ian Macali
 
C language updated
C language updatedC language updated
C language updated
Arafat Bin Reza
 
php basics
php basicsphp basics
php basics
Anmol Paul
 
PHP Web Programming
PHP Web ProgrammingPHP Web Programming
PHP Web Programming
Muthuselvam RS
 
Ruby quick ref
Ruby quick refRuby quick ref
Ruby quick ref
Tharcius Silva
 
Ruby cheat sheet
Ruby cheat sheetRuby cheat sheet
Ruby cheat sheet
Tharcius Silva
 
Free PHP Book Online | PHP Development in India
Free PHP Book Online | PHP Development in IndiaFree PHP Book Online | PHP Development in India
Free PHP Book Online | PHP Development in India
Deepak Rajput
 
PHP Basics
PHP BasicsPHP Basics
PHP Basics
Henry Osborne
 
Download It
Download ItDownload It
Download It
webhostingguy
 
C Programming Project
C Programming ProjectC Programming Project
C Programming Project
Vijayananda Mohire
 
Basic of PHP
Basic of PHPBasic of PHP
Basic of PHP
Nisa Soomro
 
Introduction to Go language
Introduction to Go languageIntroduction to Go language
Introduction to Go language
Tzar Umang
 
PHP Reviewer
PHP ReviewerPHP Reviewer
PHP Reviewer
Cecilia Pamfilo
 
Introduction to php basics
Introduction to php   basicsIntroduction to php   basics
Introduction to php basics
baabtra.com - No. 1 supplier of quality freshers
 
Introduction to php php++
Introduction to php php++Introduction to php php++
Introduction to php php++
Tanay Kishore Mishra
 
Lesson 1 php syntax
Lesson 1   php syntaxLesson 1   php syntax
Lesson 1 php syntax
MLG College of Learning, Inc
 
Python: an introduction for PHP webdevelopers
Python: an introduction for PHP webdevelopersPython: an introduction for PHP webdevelopers
Python: an introduction for PHP webdevelopers
Glenn De Backer
 
Php Tutorial
Php TutorialPhp Tutorial
Php Tutorial
Dr. Ramkumar Lakshminarayanan
 
course slides -- powerpoint
course slides -- powerpointcourse slides -- powerpoint
course slides -- powerpoint
webhostingguy
 

Viewers also liked (20)

Butler zero
Butler   zeroButler   zero
Butler zero
William Kritsonis
 
Unbreakable: Father
Unbreakable: FatherUnbreakable: Father
Unbreakable: Father
Jonathan Swales
 
Trees I Know
Trees I KnowTrees I Know
Trees I Know
mbenson75
 
Copies de seguretat de dades amb cobianbackup
Copies de seguretat de dades amb cobianbackupCopies de seguretat de dades amb cobianbackup
Copies de seguretat de dades amb cobianbackup
Pedro Pablo
 
Teresa Ann Hughes, Dissertation Defense, Dr. William Kritsonis, Dissertation ...
Teresa Ann Hughes, Dissertation Defense, Dr. William Kritsonis, Dissertation ...Teresa Ann Hughes, Dissertation Defense, Dr. William Kritsonis, Dissertation ...
Teresa Ann Hughes, Dissertation Defense, Dr. William Kritsonis, Dissertation ...
William Kritsonis
 
Dr. S. Marie McCarther, University of Missouri - Kansas City
Dr. S. Marie McCarther, University of Missouri - Kansas CityDr. S. Marie McCarther, University of Missouri - Kansas City
Dr. S. Marie McCarther, University of Missouri - Kansas City
William Kritsonis
 
Heaven and Hell
Heaven and HellHeaven and Hell
Heaven and Hell
Jonathan Swales
 
Canvi tauler de control
Canvi tauler de controlCanvi tauler de control
Canvi tauler de control
Pedro Pablo
 
Photographing Torture at Abu Ghraib: Gendered Violence and The Other
Photographing Torture at Abu Ghraib: Gendered Violence and The OtherPhotographing Torture at Abu Ghraib: Gendered Violence and The Other
Photographing Torture at Abu Ghraib: Gendered Violence and The Other
Peter Pawlick
 
Chapter15[1]
Chapter15[1]Chapter15[1]
Chapter15[1]
William Kritsonis
 
National FORUM of Multicultural Issues Journal, Dr. William Allan Kritsonis, ...
National FORUM of Multicultural Issues Journal, Dr. William Allan Kritsonis, ...National FORUM of Multicultural Issues Journal, Dr. William Allan Kritsonis, ...
National FORUM of Multicultural Issues Journal, Dr. William Allan Kritsonis, ...
William Kritsonis
 
West Africa food crisis
West Africa food crisisWest Africa food crisis
West Africa food crisis
CAFOD
 
Ch 15 Legalities Affecting Schooling - Dr. William Allan Kritsonis
Ch 15 Legalities Affecting Schooling - Dr. William Allan KritsonisCh 15 Legalities Affecting Schooling - Dr. William Allan Kritsonis
Ch 15 Legalities Affecting Schooling - Dr. William Allan Kritsonis
William Kritsonis
 
Bijoli's vegetable garden
Bijoli's vegetable gardenBijoli's vegetable garden
Bijoli's vegetable garden
CAFOD
 
Samsung: Universe Campaign Concepts (Strategy)
Samsung: Universe Campaign Concepts (Strategy)Samsung: Universe Campaign Concepts (Strategy)
Samsung: Universe Campaign Concepts (Strategy)
Jessica Legg
 
Dr. Fred C. Lunenburg, Escalation of Commitment - Published in the INTERNAT...
Dr. Fred C. Lunenburg,   Escalation of Commitment - Published in the INTERNAT...Dr. Fred C. Lunenburg,   Escalation of Commitment - Published in the INTERNAT...
Dr. Fred C. Lunenburg, Escalation of Commitment - Published in the INTERNAT...
William Kritsonis
 
Russia pres. butler & kritsonis
Russia pres. butler & kritsonisRussia pres. butler & kritsonis
Russia pres. butler & kritsonis
William Kritsonis
 
Preso orangevalley klantcongres
Preso orangevalley klantcongresPreso orangevalley klantcongres
Preso orangevalley klantcongres
Sjef Kerkhofs
 
Student Rights & Bill Or Rights
Student Rights & Bill Or RightsStudent Rights & Bill Or Rights
Student Rights & Bill Or Rights
William Kritsonis
 
Trees I Know
Trees I KnowTrees I Know
Trees I Know
mbenson75
 
Copies de seguretat de dades amb cobianbackup
Copies de seguretat de dades amb cobianbackupCopies de seguretat de dades amb cobianbackup
Copies de seguretat de dades amb cobianbackup
Pedro Pablo
 
Teresa Ann Hughes, Dissertation Defense, Dr. William Kritsonis, Dissertation ...
Teresa Ann Hughes, Dissertation Defense, Dr. William Kritsonis, Dissertation ...Teresa Ann Hughes, Dissertation Defense, Dr. William Kritsonis, Dissertation ...
Teresa Ann Hughes, Dissertation Defense, Dr. William Kritsonis, Dissertation ...
William Kritsonis
 
Dr. S. Marie McCarther, University of Missouri - Kansas City
Dr. S. Marie McCarther, University of Missouri - Kansas CityDr. S. Marie McCarther, University of Missouri - Kansas City
Dr. S. Marie McCarther, University of Missouri - Kansas City
William Kritsonis
 
Canvi tauler de control
Canvi tauler de controlCanvi tauler de control
Canvi tauler de control
Pedro Pablo
 
Photographing Torture at Abu Ghraib: Gendered Violence and The Other
Photographing Torture at Abu Ghraib: Gendered Violence and The OtherPhotographing Torture at Abu Ghraib: Gendered Violence and The Other
Photographing Torture at Abu Ghraib: Gendered Violence and The Other
Peter Pawlick
 
National FORUM of Multicultural Issues Journal, Dr. William Allan Kritsonis, ...
National FORUM of Multicultural Issues Journal, Dr. William Allan Kritsonis, ...National FORUM of Multicultural Issues Journal, Dr. William Allan Kritsonis, ...
National FORUM of Multicultural Issues Journal, Dr. William Allan Kritsonis, ...
William Kritsonis
 
West Africa food crisis
West Africa food crisisWest Africa food crisis
West Africa food crisis
CAFOD
 
Ch 15 Legalities Affecting Schooling - Dr. William Allan Kritsonis
Ch 15 Legalities Affecting Schooling - Dr. William Allan KritsonisCh 15 Legalities Affecting Schooling - Dr. William Allan Kritsonis
Ch 15 Legalities Affecting Schooling - Dr. William Allan Kritsonis
William Kritsonis
 
Bijoli's vegetable garden
Bijoli's vegetable gardenBijoli's vegetable garden
Bijoli's vegetable garden
CAFOD
 
Samsung: Universe Campaign Concepts (Strategy)
Samsung: Universe Campaign Concepts (Strategy)Samsung: Universe Campaign Concepts (Strategy)
Samsung: Universe Campaign Concepts (Strategy)
Jessica Legg
 
Dr. Fred C. Lunenburg, Escalation of Commitment - Published in the INTERNAT...
Dr. Fred C. Lunenburg,   Escalation of Commitment - Published in the INTERNAT...Dr. Fred C. Lunenburg,   Escalation of Commitment - Published in the INTERNAT...
Dr. Fred C. Lunenburg, Escalation of Commitment - Published in the INTERNAT...
William Kritsonis
 
Russia pres. butler & kritsonis
Russia pres. butler & kritsonisRussia pres. butler & kritsonis
Russia pres. butler & kritsonis
William Kritsonis
 
Preso orangevalley klantcongres
Preso orangevalley klantcongresPreso orangevalley klantcongres
Preso orangevalley klantcongres
Sjef Kerkhofs
 
Student Rights & Bill Or Rights
Student Rights & Bill Or RightsStudent Rights & Bill Or Rights
Student Rights & Bill Or Rights
William Kritsonis
 
Ad

Similar to Php1 (20)

Open Source Package Php Mysql 1228203701094763 9
Open Source Package Php Mysql 1228203701094763 9Open Source Package Php Mysql 1228203701094763 9
Open Source Package Php Mysql 1228203701094763 9
isadorta
 
Open Source Package PHP & MySQL
Open Source Package PHP & MySQLOpen Source Package PHP & MySQL
Open Source Package PHP & MySQL
kalaisai
 
PHP MySQL
PHP MySQLPHP MySQL
PHP MySQL
Md. Sirajus Salayhin
 
What Is Php
What Is PhpWhat Is Php
What Is Php
AVC
 
Internet Technology and its Applications
Internet Technology and its ApplicationsInternet Technology and its Applications
Internet Technology and its Applications
amichoksi
 
Php
PhpPhp
Php
Moorthy Haribabu
 
Introduction To Php For Wit2009
Introduction To Php For Wit2009Introduction To Php For Wit2009
Introduction To Php For Wit2009
cwarren
 
FYBSC IT Web Programming Unit IV PHP and MySQL
FYBSC IT Web Programming Unit IV  PHP and MySQLFYBSC IT Web Programming Unit IV  PHP and MySQL
FYBSC IT Web Programming Unit IV PHP and MySQL
Arti Parab Academics
 
Learn PHP Basics
Learn PHP Basics Learn PHP Basics
Learn PHP Basics
McSoftsis
 
Introduction to PHP
Introduction to PHPIntroduction to PHP
Introduction to PHP
Jussi Pohjolainen
 
P H P Part I, By Kian
P H P  Part  I,  By  KianP H P  Part  I,  By  Kian
P H P Part I, By Kian
phelios
 
Php Learning show
Php Learning showPhp Learning show
Php Learning show
Gnugroup India
 
Programming in PHP Course Material BCA 6th Semester
Programming in PHP Course Material BCA 6th SemesterProgramming in PHP Course Material BCA 6th Semester
Programming in PHP Course Material BCA 6th Semester
SanthiNivas
 
PHP
PHP PHP
PHP
webhostingguy
 
The basics of php for engeneering students
The basics of php for engeneering studentsThe basics of php for engeneering students
The basics of php for engeneering students
rahuljustin77
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
Taha Malampatti
 
Introduction to PHP - Basics of PHP
Introduction to PHP - Basics of PHPIntroduction to PHP - Basics of PHP
Introduction to PHP - Basics of PHP
wahidullah mudaser
 
WT_PHP_PART1.pdf
WT_PHP_PART1.pdfWT_PHP_PART1.pdf
WT_PHP_PART1.pdf
HambardeAtharva
 
02 Php Vars Op Control Etc
02 Php Vars Op Control Etc02 Php Vars Op Control Etc
02 Php Vars Op Control Etc
Geshan Manandhar
 
Php intro
Php introPhp intro
Php intro
Rajesh Jha
 
Open Source Package Php Mysql 1228203701094763 9
Open Source Package Php Mysql 1228203701094763 9Open Source Package Php Mysql 1228203701094763 9
Open Source Package Php Mysql 1228203701094763 9
isadorta
 
Open Source Package PHP & MySQL
Open Source Package PHP & MySQLOpen Source Package PHP & MySQL
Open Source Package PHP & MySQL
kalaisai
 
What Is Php
What Is PhpWhat Is Php
What Is Php
AVC
 
Internet Technology and its Applications
Internet Technology and its ApplicationsInternet Technology and its Applications
Internet Technology and its Applications
amichoksi
 
Introduction To Php For Wit2009
Introduction To Php For Wit2009Introduction To Php For Wit2009
Introduction To Php For Wit2009
cwarren
 
FYBSC IT Web Programming Unit IV PHP and MySQL
FYBSC IT Web Programming Unit IV  PHP and MySQLFYBSC IT Web Programming Unit IV  PHP and MySQL
FYBSC IT Web Programming Unit IV PHP and MySQL
Arti Parab Academics
 
Learn PHP Basics
Learn PHP Basics Learn PHP Basics
Learn PHP Basics
McSoftsis
 
P H P Part I, By Kian
P H P  Part  I,  By  KianP H P  Part  I,  By  Kian
P H P Part I, By Kian
phelios
 
Programming in PHP Course Material BCA 6th Semester
Programming in PHP Course Material BCA 6th SemesterProgramming in PHP Course Material BCA 6th Semester
Programming in PHP Course Material BCA 6th Semester
SanthiNivas
 
The basics of php for engeneering students
The basics of php for engeneering studentsThe basics of php for engeneering students
The basics of php for engeneering students
rahuljustin77
 
Introduction to PHP - Basics of PHP
Introduction to PHP - Basics of PHPIntroduction to PHP - Basics of PHP
Introduction to PHP - Basics of PHP
wahidullah mudaser
 
02 Php Vars Op Control Etc
02 Php Vars Op Control Etc02 Php Vars Op Control Etc
02 Php Vars Op Control Etc
Geshan Manandhar
 
Ad

More from Keennary Pungyera (6)

Sap procurement process flow
Sap procurement process flowSap procurement process flow
Sap procurement process flow
Keennary Pungyera
 
Link Tds
Link TdsLink Tds
Link Tds
Keennary Pungyera
 
Interest Calculation
Interest CalculationInterest Calculation
Interest Calculation
Keennary Pungyera
 
Php2
Php2Php2
Php2
Keennary Pungyera
 
The Simple Life Very Beautiful 19082008
The Simple Life Very Beautiful 19082008The Simple Life Very Beautiful 19082008
The Simple Life Very Beautiful 19082008
Keennary Pungyera
 
Fuction call
Fuction callFuction call
Fuction call
Keennary Pungyera
 

Recently uploaded (20)

pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
Real GitHub Copilot Exam Dumps for Success
Real GitHub Copilot Exam Dumps for SuccessReal GitHub Copilot Exam Dumps for Success
Real GitHub Copilot Exam Dumps for Success
Mark Soia
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Engage Donors Through Powerful Storytelling.pdf
Engage Donors Through Powerful Storytelling.pdfEngage Donors Through Powerful Storytelling.pdf
Engage Donors Through Powerful Storytelling.pdf
TechSoup
 
03#UNTAGGED. Generosity in architecture.
03#UNTAGGED. Generosity in architecture.03#UNTAGGED. Generosity in architecture.
03#UNTAGGED. Generosity in architecture.
MCH
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
How to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POSHow to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POS
Celine George
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 5-3-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 5-3-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 5-3-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 5-3-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Presentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem KayaPresentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem Kaya
MIPLM
 
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingHow to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
Celine George
 
Contact Lens:::: An Overview.pptx.: Optometry
Contact Lens:::: An Overview.pptx.: OptometryContact Lens:::: An Overview.pptx.: Optometry
Contact Lens:::: An Overview.pptx.: Optometry
MushahidRaza8
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
How to Manage Purchase Alternatives in Odoo 18
How to Manage Purchase Alternatives in Odoo 18How to Manage Purchase Alternatives in Odoo 18
How to Manage Purchase Alternatives in Odoo 18
Celine George
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
Real GitHub Copilot Exam Dumps for Success
Real GitHub Copilot Exam Dumps for SuccessReal GitHub Copilot Exam Dumps for Success
Real GitHub Copilot Exam Dumps for Success
Mark Soia
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Engage Donors Through Powerful Storytelling.pdf
Engage Donors Through Powerful Storytelling.pdfEngage Donors Through Powerful Storytelling.pdf
Engage Donors Through Powerful Storytelling.pdf
TechSoup
 
03#UNTAGGED. Generosity in architecture.
03#UNTAGGED. Generosity in architecture.03#UNTAGGED. Generosity in architecture.
03#UNTAGGED. Generosity in architecture.
MCH
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
How to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POSHow to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POS
Celine George
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
Presentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem KayaPresentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem Kaya
MIPLM
 
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingHow to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
Celine George
 
Contact Lens:::: An Overview.pptx.: Optometry
Contact Lens:::: An Overview.pptx.: OptometryContact Lens:::: An Overview.pptx.: Optometry
Contact Lens:::: An Overview.pptx.: Optometry
MushahidRaza8
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
How to Manage Purchase Alternatives in Odoo 18
How to Manage Purchase Alternatives in Odoo 18How to Manage Purchase Alternatives in Odoo 18
How to Manage Purchase Alternatives in Odoo 18
Celine George
 

Php1

  • 1. Features of PHP PHP stands for Hypertext Preprocessor“. It is a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. It is an interpreted language. There are three main fields where PHP scripts are used. Server side scripting Command line scripting. Writing client-side GUI applications.For this PHP-GTK is used. PHP-GTK is an extension for the PHP programming language that implements language bindings for GTK+. It provides an object-oriented interface to GTK+ classes and functions and greatly simplifies writing client-side cross-platform GUI applications.
  • 2. PHP can be used on all major operating systems, including Linux, many Unix variants, Microsoft Windows, Mac OS X etc. PHP has also support for most of the web servers today. This includes Apache, Microsoft Internet Information Server, Personal Web Server, Netscape and iPlanet servers, Oreilly Website Pro server and many others.
  • 3. You also have the choice of using procedural programming or object oriented programming, or a mixture of them. PHP does more than just generating dynamic web-pages. PHP's abilities includes: Generating images dynamically PDF files Flash movies Compression Download and upload XML support
  • 4. PHP also has support for talking to other services using protocols such as LDAP, IMAP, SNMP, NNTP, POP3, HTTP, COM (on Windows) and countless others. You can also open raw network sockets and interact using any other protocol. PHP has support for the WDDX complex data exchange between virtually all Web programming languages. (Support for web services) PHP has support for instantiation of Java objects and using them transparently as PHP objects. You can also use CORBA extension to access remote objects. e.g. You can use java classes in php.
  • 5. A sample PHP script <html> <head> <title>PHP Test</title> </head> <body> <?php echo &quot;<p>Hello World</p>&quot;; echo phpinfo(); ?> </body> </html> A call to the phpinfo() function returns a lot of useful information about your system and setup such as available predefined variables, loaded PHP modules, and configuration settings.
  • 6. php syntaxes are similar to C. php is whitespace insensitive. e.g. $four = 2 + 2; php is sometimes case insensitive. i.e. All variables are case sensitive.
  • 7. Basics of variable Variables in PHP are represented by a dollar sign followed by the name of the variable. The variable name is case-sensitive. PHP is also context-sensitive like perl. A valid variable name starts with a letter or underscore, followed by any number of letters, numbers, or underscores.
  • 8. PHP provides 8 primitive data-types. Four scalar types: boolean integer float string Two compound types array object Two special types: resource NULL PHP,types are associated with values rather than variables. No previous declaration is needed. You can assign value to variable as and when you need it. e.g. $int_var=15; $str=“string1”;
  • 9. If you want to check out the type and value of a certain variable, use var_dump() . It dumps information about variable. <?php $b = 3.1; $c = true; var_dump($b, $c); ?> o/p : float(3.1) bool(true) If you want to get type of a variable, then use gettype(). echo gettype($bool); // prints out &quot;boolean“ echo gettype($str);  // prints out &quot;string“
  • 10. To check type of veriables in condition, separate functions are there for each type. basic syntax is is_type(variable) some of it are is_integer is_float is_numeric is_string is_scalar is_object is_array It returns true if variable will be of that specific type. Otherwise it returns false. If you would like to force a variable to be converted to a certain type, you may either cast the variable or use the settype() function on it. It returns true on success and false on failure. settype($var, &quot;integer&quot;);
  • 11. In php, default error reporting setting allows you to use unassigned variables without errors. To change this setting you should set error reporting level to E_ALL in your php.ini file. error_reporting(E_ALL); To check if variable is assigned a value or not, use isset($var) . PHP variables are global in scope. You can use it throughout your program.
  • 12. To define boolean variable, $flag=True; To define string variable, $str=“string variable”; String can be enclosed in double quotes, single quotes or you can also use heredoc operator. $str = <<<EOF Example of string spanning multiple lines using heredoc syntax. EOF; To define constant, define(&quot;MAXSIZE&quot;, 100);
  • 13. Operators Arithmetic : +,-,/,%,* String . , .= Assignment operators for all above operators. +=, -= etc , ++ , -- Comparision == , != , <> , > , >= , < , <= , === === returns true if its two operands are having the same value, and they are of the same type. e.g. $a=15; $b=15; if( $a === $b) { print “Identical variables”; }
  • 14. PHP supports one execution operator: backquotes (``). PHP will attempt to execute the contents of the backquotes as a system command; the output will be returned in a variable. <?php $output = `ls`; echo &quot;<pre>$output</pre>&quot;; ?>
  • 15. Control Structures if,else,elseif while,for , do..while , for , foreach , break , continue , switch $i=1; switch ($i) {     case 0:         print &quot;i equals 0&quot;;         break;     case 1:         print &quot;i equals 1&quot;;         break;     case 2:         print &quot;i equals 2&quot;;         break;    default :         print &quot;i equals -1&quot;; } comments . # , // , /* */