PHP
- 8 ответов
- 0 вопросов
8
Вклад в тег
ffmpeg ... 2>&1
protected $_aliasesCache = [];
public function getAlias($method)
{
if (! array_key_exists($method, $this->_aliasesCache)) {
$this->_aliasesCache[$method] = str_replace('_', '.', $method);
}
return $this->_aliasesCache[$method];
}
// Usage
public function some_method()
{
$this->getAlias(__FUNCTION__);
}