In another question, someone posted this code in the answer to my question.
drupal_set_message(
t('Some Message @title'), array('@title' => $form_state['values']['title']))
);
It seems to me that "@title" is being replaced by $form_state['values']['title'].
What is it called and what are its advantages and disadvantages?
With a quick look, I see that @ is used to suppress errors, but this is reported in the book of PHP 4.3 with me, and not in PHP 5.
source
share