mirror of
https://github.com/retailcrm/NameCaseLib.git
synced 2025-02-06 09:09:23 +03:00
10 lines
264 B
PHP
10 lines
264 B
PHP
<?php
|
|
|
|
header('Content-type: text/html; charset=utf-8');
|
|
require '../Library/NCL.NameCase.ru.php';
|
|
$ob = new NCLNameCaseRu;
|
|
$ob->setSecondName('Чайка');
|
|
$ob->setGender(NCLNameCaseRu::$MAN);
|
|
print_r($ob->getSecondNameCase()); echo $ob->getSecondNameRule();
|
|
?>
|