Skip to content

Instantly share code, notes, and snippets.

@ikariiin
Created July 21, 2015 16:52
Show Gist options
  • Save ikariiin/e1d05ae0b2249374ab69 to your computer and use it in GitHub Desktop.
Save ikariiin/e1d05ae0b2249374ab69 to your computer and use it in GitHub Desktop.
<?php
/**
* Created by PhpStorm.
* User: gourab
* Date: 20/7/15
* Time: 10:35 PM
*/
$name = "GOURAB";
$revName = strrev($name);
$len = strlen($name);
for($i = 0; $i < $len; $i++)
{
echo substr($name, $i)
. str_repeat(" ", $i)
. str_repeat(" ", $i)
. substr($revName, $i)
. "\n";
}
for($j = $len; $j > 0; $j--)
{
echo substr($name, $j)
. str_repeat(" ", $j)
. str_repeat(" ", $j)
. substr($revName, $j)
. "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment