<?php require_once 'MathLibrary-class.php'; $dialog; $dialog[] = 'De waarde van pi is ' . MathLibrary::$piNumber; $dialog[] = 'De lengte van de schuine zijde van een driehoek waarbij de overige zijden 5cm en 5cm zijn, bedraagt: ' . MathLibrary::pythagorasHypothenuse(5, 5) . 'cm'; $dialog[] = MathLibrary::getTestString(); require_once 'voorbeelden-classes-static-view.php';
<?php /* +-------------------------------------------------------------+ | Copyright (c) 2014 Facebook, Inc. (http://www.facebook.com) | +-------------------------------------------------------------+ */ error_reporting(-1); include_once 'MathLibrary.inc'; // $m = new MathLibrary; // can't instantiate a final class MathLibrary::sin(2.34); MathLibrary::cos(2.34); MathLibrary::tan(2.34);