PHP Programing language

R4R® PHP Function
(追記) (追記ここまで)
(追記) (追記ここまで)
What is Function
A function is something that performs a specific task. The People write functions if they plan on doing the same task over and over again. This allows you to only write the code once and save a lot of time and space. PHP has several functions that already exist for us to use. Although they all have different uses, all functions are phrased as:

name (argument).

The name being the name of the function, and the argument being the value (s) it is using.

A function is like a subroutine. It is a predefined set of commands that are executed when the function is called. Functions can be as simple or complex as desired, and can contain other functions within themselves. In the case of PHP, some functions come preprogrammed and others you can define on your own.

How Can create a Function in PHP

Syntax:
function function_name ( [ argument_list....] )
{
[statements]
[return return_value;]
}
(追記) (追記ここまで)

For example:

<html>
<head>
<title>Creating a PHP Function</title>
</head>
<body>
<h1>Creating a PHP Function</h1>
<?php
echo "Hello sir <br>";
echo "This is a very useful website for r4r.co.in <br>";
display();
function display()
{
echo "Best educational site this site name is r4r.co.in";
}
?>
</body>
</html>

Output:

(追記) (追記ここまで)
Copyright ©2021-22 r4r.co.in, all rights reserved. Theguestspost.com
Sitemap
Career
Post comment
About us
Subscription
Unsubscription

AltStyle によって変換されたページ (->オリジナル) /