iTech College - Internet Technology, Online Education, E-Learning, Technician Training, Tech Tutorials, Distance Education, Virtual Learning PHP Course: Function - www.itechcollege.com PHP Course: Function - www.itechcollege.com
Online Degrees Scholarships & Fellowships Internships Student Financial Aid Study Abroad Online Schools Itech Bookstore
Free Courses
HTML
JavaScript
CSS
ASP
PHP
JSP
C++
ASP.NET
SQL
AJAX
FTP
XML
Career Center
Job List
Job Search
Web Jobs
Student Jobs
Computer Jobs
Engineer Jobs
Developer Jobs
Resume Writing
Job Interview
Salary Info
Submit Articles
Online Training
for Your Job
Why I cannot find a job? Why nobody hires me?
Online degree for a Your Jobs. Online training, E-learning school, online certificate. PHP Course: Function - www.itechcollege.com Earn your
online degree now!

courses > PHP > Function

Function

The syntax of function is very similar to Javascript:

<?php
  function abc() {
      echo "I love PHP";
  }

  echo "Hello, World <br />";
  abc();
?>

The output is:

Hello, World
I love PHP

You can put any PHP code into the function block. But you should keep in mind, to use a function, you must call functin name with "()". In the above the sample, we call the function:

abc();

We can pass parameters to a function:

<?php
function abc($count, $msg = "I love PHP") { 
for($i = 0; $i < $count; $i++){ 
echo $msg . "<br />"; 
} 
} 

abc(5);

The output is that the value of $msg "I love PHP" will be displayed for 5 times.

We can use the return statements to assign a variable's value based on the results of the execution of a particular function. For example:

<?php
  function compareNum($v1, $v2) {
   if($v1 > $v2) {
    return "Yes";
   } else {
    return "No";
   }
  ?>

  $anwser = compareNum(8, 10);
  echo "Is 8 greater than 10? -- $answer!";
?>

The output will be:

Is 8 greater than 10? -- No!


  Back to Index Page
Next Page >>   Basic Tags
Statements Comments and Characters
echo
Variables
Array
Loop
The If Statement
Function
Send and get Query String
Date and Time
Cookies
Environment Variables
Use Database
Create Graphics
or_log
icon.ico
 
PHP Jobs
Student Jobs
Computer Jobs
New Jobs
PHP Books



Online Education, Online Training for Your Job, Distance Education, E-learning Programs for Your Career!Online Colleges, Online Universities, E-learning & Distance Education for Your Career! Easy Job Training & Online Courses.


   Email A Friend  
 
Earn Online Degree
for Your Job
I found a job after I earned an online degree!
Online classes for finding a Job. Online College, Online University, Degrees, E-learning school, online certificate Earn your
online degree now!
Online Training
for Good Job
Why I work so hard but earn so little? Why I cannot find a high paying job?
Online training for a Good Jobs. Online Degree, E-learning school, online certificate Go to
online school now!

Copyright ©2010, itechcollege.com. All rights reserved
iTechCollege | About iTech | Contact iTech