PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

What is a function?


The concept of functions is something that a beginning programmer may be wary of or think of suspiciously, but in fact they will become more and more useful the more you program.

A function is just a container for a block of code. Functions are powerful because they enable you to create a section of code that can, if well-written, be copied and pasted from program to program saving you writing it each time.

In addition it makes debugging easier as you can track problems to individual blocks of code - the functions.

And also very attractive is that with a function you don't necessarily need to know how it works once written to use it - just like all the built-in functions in PHP, you can make it available to others and they can copy and paste it and it should work.

Here is a simple function in action:
<?php

function myfirstfunction() {
echo 
"My first function!";
}
myfirstfunction(); // call the function
?>



Comment on this Question and Answer >>>

ASK A QUESTION

More functions PHP Questions

How do I return a value from a function?

WHAT IS THE CORRECT WAY TO OPEN THE FILE "time.text" AS READABLE?

I'm trying to replace multipl occurences of "[nuber_goes_here]" in a string using preg_replace. $string = 'This is a sentence with a [25] in it.'; echo $string.''; $pattern = '/(\[)(\d+)(\])/'; $replacement = ' '.return_name(

difference between fetch_array function & fetch_row function

1-what is a header("Location:http//www.website.com"); 2-how does it work? 3-What is a reason to use this function?



Custom Search