, 2 , .
- :
function render($firstname, $lastname, $phone = null, $email = null, $organisation = null)
{
$templatePath = (is_null($phone) && is_null($email) && is_null($organisation)) ?
'/path/to/your/template/withought/the/contact/table.html':
'/path/to/your/template/with/the/contact/table.html';
$templateContent = file_get_contents($templatePath);
$placeHolders = [
'%firstname%',
'%lastname%',
'%phone%',
'%email%',
'%organisation%',
];
$values = [
$firstname,
$lastname,
$phone,
$email,
$organisation,
];
$rendered = str_replace($placeHolders, $values, $templateContent);
return $rendered;
}