Core
3.2
PHP API documentation
Main Page
Related Pages
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Pages
Class.TestDefaultStatic.php
Go to the documentation of this file.
1
<?php
2
/*
3
* @author Anakeen
4
* @package FDL
5
*/
6
7
class
TestStaticDefault
8
{
9
public
static
function
multiAdd
()
10
{
11
$tx = func_get_args();
12
13
return
array_sum($tx);
14
}
15
16
public
static
function
semiColumnConcat
()
17
{
18
$tx = func_get_args();
19
20
return
implode(
':'
, $tx);
21
}
22
}
23
?>
TestStaticDefault\semiColumnConcat
static semiColumnConcat()
Definition:
Class.TestDefaultStatic.php:16
TestStaticDefault
Definition:
Class.TestDefaultStatic.php:7
TestStaticDefault\multiAdd
static multiAdd()
Definition:
Class.TestDefaultStatic.php:9
← centre documentaire
© anakeen