I am in the process of converting several websites from a raw PHP templating system over to Twig. One problem I have hit is how to convert templates where the PHP extract function is used. Any thoughts on how to handle this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Pass the array that you would otherwise call
extract()on to twig’s render function, in the end it will behave exactly like you need – the array’s keys as the variable names.