Splitting a string into arrays in Smarty
Posted: August 8, 2010 Filed under: Programming | Tags: array, php, programming, smarty, split, splitting, string, variable Leave a comment »This isn’t supposed to be a blog about programming, but I’m working a lot with PHP and Smarty these days, and whenever I manage to crack a problem, I get this strange feeling of acchievement. Then I come here to brag.
Anyway, here goes:
«How do I split a string in Smarty template engine?»
Well kind Sir, that’s quite an easy task. Here’s an example:
{assign var=”teststring” value=”31|32″}
{assign var=”testsplit” value=”|”|explode:$teststring}
{$testsplit[0]}<br />
{$testsplit[1]}
Let’s for example say you have a bunch of Meta Keywords that are bundled together in the database (games,game,online,playing) – and you want to separate them, so that you can create keyword-specific landingpages for on-site search optimalization (games – game - online - playing).
Here’s how you do it:
(we’re assuming you have a variable called $MetaKeywords!)
{* Splitting a long string into a bunch of different arrays *}{assign var=”keywords” value=”,”|explode:$MetaKeywords}{foreach from=$keywords item=keyword}<a href=”/index.php?search={$keyword}”>{$keyword|trim}</a>, {/foreach}
Include PHP-file in Smarty
Posted: August 8, 2010 Filed under: Programming | Tags: code, php, programming, smarty Leave a comment »I’m teaching myself PHP and Smarty these days, and today I ran across a common problem:
«How do I include a PHP-file – or execute PHP-code – when using the Smarty template engine?»
After banging my head against the wall for a couple of hours, I finally found the solution. To include a PHP-file in a Smarty template, use the following code:
{include_php file=”/path/to/somefile.php”}
You can also use the following code to run and/or execute PHP-code within Smarty:
{php}
include(“includes/myname.php”);
{/php}
Hope this blog post helps some poor soul one day… Keep hacking.

Recent Comments