NameCaseLib/Tutorial/lesson3.php
2011-07-09 17:54:13 +03:00

43 lines
1.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
header('Content-type: text/html; charset=utf-8');
require '../Library/NCL.NameCase.ru.php';
$nc = new NCLNameCaseRu();
$people = array("Андрей Николаевич", 'Ирина', 'Ефиопский Аркадий Василевич',
'Мария Николаевна', 'Розумовский Илья');
/**
* Выбираем случайного человека из списка
*/
$person = $people[rand(0, count($people) - 1)];
/**
* Определяем пол человека
*/
$gender = $nc->genderDetect($person);
/**
* Выводим приветствие
*/
echo "Мы хотим предложить " . $nc->q($person, NCL::$DATELN) . " наши новые товары из категорий:
<ul>";
/**
* В зависимости от пола предлагаем разные товары
*/
if ($gender == NCL::$MAN)
{
echo "<li>Рыбалка и охота</li>
<li>Электроника</li>
<li>Инструменты для дома</li>";
}
else
{
echo "<li>Книги о кулинарии</li>
<li>Косметика</li>
<li>Дом и семья</li>";
}
echo "</ul>";
?>