for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Select
* Auxilia nas <select>
* @author WebCorpore
*/
namespace Win\Html\Form;
class Select {
* Retorna selected="true" se os valores são iguais
* @param mixed $value1
* @param mixed $value2
public static function active($value1, $value2 = true) {
if ($value1 == $value2) {
echo 'selected="true"';
}