Bookmark and Share Post Reply  Post Thread 

Arguments in PHP
Author Message
clerisy
Junior Member



Posts: 33
Group: Registered
   
Cash: 0.00 Donate
Arguments in PHP

How many ways can an argument be passed to a method???????????????QuestionExclamation


IT services company
02-04-2012 03:06 PM
Send the author a private message Visit authors website Find all posts by this author Quote this message in a reply
Affiliate Banner
This is an ad revenue sharing forum
briensmith
Junior Member



Posts: 31
Group: Registered
   
Cash: 0.00 Donate
RE: Arguments in PHP

Hello,

PHP is a general-purpose server-side scripting language originally designed for Web development to produce dynamic Web pages. It is among one of the first developed server-side scripting languages to be embedded into an HTML source document, rather than calling an external file to process data. Ultimately, the code is interpreted by a Web server with a PHP processor module which generates the resulting Web page. It also has evolved to include a command-line interface capability and can be used in standalone graphical applications.

Thanks,

manchester united shirt
liverpool shirt
jersey

02-09-2012 01:34 AM
Send the author a private message Find all posts by this author Quote this message in a reply
macjonny
Junior Member



Posts: 6
Group: Registered
   
Cash: 0.00 Donate
RE: Arguments in PHP

<?php
function makecoffee($type = "cappuccino")
{
return "Making a cup of $type.\n";
}
echo makecoffee();
echo makecoffee(null);
echo makecoffee("espresso");
?>


wire duct
02-10-2012 03:26 PM
Send the author a private message Find all posts by this author Quote this message in a reply
sam051
Member



Posts: 57
Group: Registered
   
Cash: 0.00 Donate
RE: Arguments in PHP

This is server site scripting so you need to try this
<?php
function makecoffee($type = "cappuccino")
{
return "Making a cup of $type.\n";
}
echo makecoffee();
echo makecoffee(null);
echo makecoffee("espresso");
?>


CONVERT PSD TO HTML | LOGO DESIGN | SIGN DESIGN SOFTWARE
03-22-2012 10:43 PM
Send the author a private message Find all posts by this author Quote this message in a reply

Bookmark and Share Post Reply  Post Thread 


View a Printable Version | Send this Thread to a Friend | Subscribe to this Thread | Add Thread to Favorites
Rate This Thread:
Forum Jump: