Skip to content
This repository has been archived by the owner on Dec 2, 2017. It is now read-only.
Alexey Ilyin edited this page Mar 5, 2016 · 11 revisions

As of version 0.5.0 aiix.php could be installed with composer:

$ php composer install ailixter/aiix

It could also be autoloaded, but for the sake of speed it is recommended to just require() it.

\AIIX\Data

$data = new \AIIX\data($array);
$data->set('key1/key2', 'value1')->set('key3', 'value2');
$value = $data->get('key1/key2', 'default');

to be continued

\AIIX\Form

[firstname]
-label = "First Name"
class  = userdata
\AIIX\Form::create($formdata);

----------------------------

echo \AIIX\Form::label('firstname');
echo \AIIX\Form::control('firstname');

more...