SemanticScuttle/includes/js/dojo/tests/resources/testClass.php

21 lines
264 B
PHP
Raw Normal View History

<?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;
}
}
?>