Skip to main content

php logic one

Querstion :-



find login to print

1.input => ab
output => a, ab, b
2. bana
output => b, ba, ban, bana, a, an, ana, n,na, a




Ans :-


$str = "12345";
$ar = [];
for($ui=0; $ui < strlen($str); $ui++) {
  $newstr = ($ui != 0)?substr($str, $ui):$str; 
  for($i=1; $i <= strlen($newstr); $i++) {
    $ar[] = substr($newstr, 0, $i);
  }
}
echo "<pre>"; print_r($ar);



Output :-

Array
(
    [0] => 1
    [1] => 12
    [2] => 123
    [3] => 1234
    [4] => 12345
    [5] => 2
    [6] => 23
    [7] => 234
    [8] => 2345
    [9] => 3
    [10] => 34
    [11] => 345
    [12] => 4
    [13] => 45
    [14] => 5
)
   

Comments

Popular posts from this blog

happiness

webuncles launched new website which is totally depends on happiness . concept:- everyone have there own happiness in there life, like someone happy when he got a surprise, promotion in job, travel, shopping, and some one happy when they find love. happinesstree is a platform where you can find your own happiness or you also can share your way to be happy.. we are always want to know all about your happiness . This website have there own branches (some possible way which can make you happy.) , we wants you to add your own branch to our happinesstree , or you can read there some stories which is full from happiness. Read our blogs from happiness tree and share your valuable suggestions to us Webuncles a group of IT Expert proudly powered happiness.in .

Webuncles Blog

We are Active Blogger you can read our blog (1) Fixed header when scrolling  or sticky Header WordPress ( Click Here ) (2)  Fix a div in contain area with scroll ( Click Here ) (3) Multiple div in single model popup ( Click Here ) (4) multipal div show hide in bootstarp pop-up ( Click Here ) (5) “parallax scrolling css” is locked parallax scrolling css ( Click Here ) (6) Important Basic if condition in wordpress. ( Click Here ) (7) Positioning Text In an Image ( Click Here ) (8) “Parallax Scrolling Effect in Visual Composer with Css” is locked Parallax Scrolling Effect in Visual Composer with Css ( Click Here ) (9) wordpress post order by date ( Click Here ) (10) Template short code wordpress ( Click Here ) (11) Custom media grid using visual composer ( Click Here ) (12) “Custom Post Header With feature Image And Title In WordPress” is locked Custom Post Header With feature Image And Title In WordPress ( Clic...