пожалуйста, не рекомендуйте использовать фреймворки вместо велосипедов
function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\\pL\d]+~u', '-', $text);
// trim
$text = trim($text, '-');
// transliterate
if (extension_loaded('intl')) {
$translit = Transliterator::create('Any-Latin; Latin-ASCII');
$text = $translit->transliterate($text);
} else {
$map = array(
'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'g', 'д' => 'd', 'е' => 'e', 'ж' => 'zh', 'з' => 'z',
'и' => 'i', 'й' => 'y', 'к' => 'k', 'л' => 'l', 'м' => 'm', 'н' => 'n', 'о' => 'o', 'п' => 'p',
'р' => 'r', 'с' => 's', 'т' => 't', 'у' => 'u', 'ф' => 'f', 'х' => 'h', 'ц' => 'ts', 'ч' => 'ch',
'ш' => 'sh', 'щ' => 'sht', 'ъ' => 'y', 'ы' => 'y', 'ь' => '\'', 'ю' => 'yu', 'я' => 'ya', 'А' => 'A',
'Б' => 'B', 'В' => 'V', 'Г' => 'G', 'Д' => 'D', 'Е' => 'E', 'Ж' => 'Zh', 'З' => 'Z', 'И' => 'I',
'Й' => 'Y', 'К' => 'K', 'Л' => 'L', 'М' => 'M', 'Н' => 'N', 'О' => 'O', 'П' => 'P', 'Р' => 'R',
'С' => 'S', 'Т' => 'T', 'У' => 'U', 'Ф' => 'F', 'Х' => 'H', 'Ц' => 'Ts', 'Ч' => 'Ch', 'Ш' => 'Sh',
'Щ' => 'Sht', 'Ъ' => 'Y', 'Ь' => '\'', 'Ю' => 'Yu', 'Я' => 'Ya'
);
$text = strtr($text, $map);
}
// lowercase
$text = strtolower($text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
if (empty($text)) {
$text = 'n-a';
}
return $text;
}
возникает ошибка 500
namespace Application\Entity;
use Zend\ServiceManager\ServiceLocatorAwareInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
class User implements ServiceLocatorAwareInterface
{
protected $serviceLocator = null;
public function __construct(ServiceLocatorInterface $serviceLocator)
{
$this->setServiceLocator($serviceLocator);
}
public function setServiceLocator(ServiceLocatorInterface $serviceLocator)
{
$this->serviceLocator = $serviceLocator;
return $this;
}
public function getServiceLocator()
{
return $this->serviceLocator;
}
public function getAuthService()
{
return $this->getServiceLocator()->get('AuthService');
}
}
namespace Application\Entity;
use Zend\ServiceManager\ServiceLocatorAwareInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\ServiceManager\ServiceLocatorAwareTrait;
class User implements ServiceLocatorAwareInterface
{
use ServiceLocatorAwareTrait;
public function __construct(ServiceLocatorInterface $serviceLocator)
{
$this->setServiceLocator($serviceLocator);
}
public function getAuthService()
{
return $this->getServiceLocator()->get('AuthService');
}
}
namespace Entity;
/**
* @method Repository\User getRepository()
*/
class User
{
// ...
}
{$count[$i->g('id')]}
{assign var="id" value=$i->g('id')}
{$count.$id}
Моделька, у которой запрашивают данные, возвращает массив объектов из базы данных.
Дальше уже идет работа с массивом объектов.
foreach ($model->getArray() as $object) {
// Делаем что-то с $object...
if (!rand(0, 10)) {
break;
}
}
foreach ($model->getIdsArray() as $id) {
// Создаём $object по $id, запросив данные из хранилища
// Делаем что-то с $object...
if (!rand(0, 10)) {
break;
}
}