本文整理汇总了PHP中Math::somar方法的典型用法代码示例。如果您正苦于以下问题:PHP Math::somar方法的具体用法?PHP Math::somar怎么用?PHP Math::somar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Math
的用法示例。
在下文中一共展示了Math::somar方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
<?php
define("CLASS_DIR", "src/");
//utilizei document_root apenas porque o index esta na raiz dele
set_include_path(get_include_path() . PATH_SEPARATOR . CLASS_DIR);
spl_autoload_register(function ($class) {
require_once str_replace('\\', '/', $class . '.php');
});
$conta = new SON\Conta\Types\ContaType();
$conta->depositar(10);
echo $conta->getSaldo();
$bancoSantander = new SON\Banco\Santander($conta);
$bancoSantander->setConta($conta);
$bancoSantander->setNome("Santander Exemplo");
$bancoSantander->getConta()->getSaldo();
$resultado = Math::somar(10, 10);
//require_once 'Pessoa.php';
//require_once 'Produto.php';
//require_once 'Tenis.php';
//$pessoa1 = new Pessoa("Rodrigo","21");
//$pessoa2 = new Pessoa("Joao", "25");
//
//echo $pessoa1->correr(50);
//$tenis = new TenisAdidas();
//$tenis->getCor();
//
//$tenis2 = new SapaTenis();
//$tenis2->getCor();
//$tenis2->getTamanho();
//if($tenis instanceof Produto){
// echo "Pertence a tenis";