nesting functions : Definition « Functions « PHP

Home
PHP
1.Chart
2.Class
3.Components
4.Cookie Session
5.Data Structure
6.Data Type
7.Date
8.Design Patterns
9.Development
10.DNS
11.Email
12.File Directory
13.Form
14.Functions
15.Graphics Image
16.HTML
17.Language Basics
18.Login Authentication
19.Math
20.MySQL Database
21.Network
22.Operator
23.PDF
24.Reflection
25.Statement
26.String
27.Utility Function
28.Web Services SOAP WSDL
29.XML
PHP » Functions » Definition 
nesting functions
 
<?php

function myFunction($price,$tax) {
   function convert_pound($dollars, $conversion=1.6) {
      return $dollars * $conversion;
   }
   $total = $price + ($price * $tax);  
   echo "Total cost in dollars: $total. Cost in British pounds: " . convert_pound($total);
}

myFunction(15.00,.075);
echo convert_pound(15);

?>
  
  
Related examples in the same category
1.Create function from string
2.Declaring a Simple Function
3.Function printing text on a Web Page
4.Declaring a Function
5.A Simple User Function
6.A Function Requiring Two Arguments
7.A Function to Build Query Strings
8.A function that calculates sales tax
9.Accessing a Global Variable from Within a Function
10.Build and then call a function
11.Call the function
12.Create a User Function
13.Defining functions before or after calling them
14.Creating and calling a function that accepts arguments
15.Define constant in a function
16.global key word in a function
17.Variables Defined Outside Functions Are Inaccessible from Within a Function by Default
18.Using nested functions
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.