e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
20 lines
264 B
PHP
20 lines
264 B
PHP
<?php
|
|
class testClass {
|
|
|
|
function myecho ($somestring) {
|
|
return "<P>" . $somestring . "</P>";
|
|
}
|
|
|
|
function contentB () {
|
|
return "<P>Content B</P>";
|
|
}
|
|
|
|
function contentC () {
|
|
return "<P>Content C</P>";
|
|
}
|
|
|
|
function add($x,$y) {
|
|
return $x + $y;
|
|
}
|
|
}
|
|
?>
|