Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Define a User Function
How To Define a User Function? - PHP Script Tips - Creating Your Own Functions
✍: FYIcenter.com
You can define a user function anywhere in a PHP script using the function statement like this: "function name() {...}". Here is a PHP script example on how to define a user function:
<?php
function msg() {
print("Hello world!\n");
}
msg();
?>
This script will print:
Hello world!
2007-04-24, 5251👍, 0💬
Popular Posts:
What’ is the sequence in which ASP.NET events are processed ? Following is the sequence in which the...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
How To Enter Numeric Values as HEX Numbers? - MySQL FAQs - Introduction to SQL Basics If you want to...
What Is the Difference between Formal Parameters and Actual Parameters? - Oracle DBA FAQ - Creating ...
Can we get a strongly typed resource class rather than using resource manager? In the previous quest...