mardraze / core
v3.0
2018-01-18 11:43 UTC
Requires
- symfony/symfony: 3.*
This package is not auto-updated.
Last update: 2024-09-23 13:36:58 UTC
README
=== 您可以让您的软件速度提高2倍。
问题
- 如何在控制器、命令、服务、Twig Helper 或事件监听器中获取参数或服务实例?
所有地方都类似
$this->depedencies->getParameter('param_name');
- 如何更快地发送电子邮件?
$this->depedencies->sendEmail('email@example.com', 'AppBundle:Email:sample_email.html.twig', array('name' => 'Marcin'));
#AppBundle:Email:sample_email.html.twig'
{%block subject%}Example email to {{name}}{% endblock %}
{%block body%}Hello {{name}}{% endblock %}