Jump to content

PHP code in ECHO


jubba890
Go to solution Solved by requinix,

Recommended Posts

In index.php I have this code

<?php
$HTML = str_replace('{$template}', 'TEMPLATES/' . $template, file_get_contents('TEMPLATES/' . $template . '/index.tpl'));
 echo $HTML;
?>

so everytime I call {$template} it replaces it with the directory, this works and all until I need PHP in my template.

 

How can I get PHP code to execute so say if I have this in my template

<?php
echo "Test";
?>

It will show Test instead of the whole code, thanks!

Link to comment
Share on other sites

  • Solution

Use include() to actually execute the code. You can use output buffering to capture the output of the script and run the templating logic on that too.

/**
 * Run a file through the templating system
 *
 * @param string $file
 * @param mixed[] $vars
 */
function template() {
	// using func_get_args() to avoid problems with overwriting variables
	extract(func_get_arg(1) ?: array());

	ob_start();
	include func_get_arg(0);
	$content = ob_get_clean();

	foreach ((func_get_arg(1) ?: array()) as $key => $value) {
		$content = str_replace('{$' . $key . '}', $value, $content);
	}
	return $content;
}
$HTML = template('TEMPLATES/' . $template . '/index.tpl', array(
	'template' => 'TEMPLATES/' . $template
));
<p>Template: template = {$template}</p>
<p>PHP: template = <?=$template?></p>
Just make sure, absolutely sure, your templates don't have any unwanted PHP code in them. Or anything that looks like PHP code.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.