mardraze / core-bundle
v3.0
2018-01-18 11:53 UTC
This package is not auto-updated.
Last update: 2024-09-20 17:32:38 UTC
README
=== 您可以使您的软件速度提高2倍。
问题
- 如何在Controller、Command、Service、Twig Helper或Event Listener中获取参数或服务实例?
无处不在相似
$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 %}