Results 1 to 7 of 7

Thread: personal web page

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Oct 2010
    Location
    Arthunkal
    Posts
    17

    Default personal web page

    PHP array_slice() Function

    Example 1
    <?php
    $a=array(0=>"Dog",1=>"Cat",2=>"Horse",3=>"Bird");
    print_r(array_slice($a,1,2));
    ?>
    Example 2
    <?php
    $a=array(0=>"Dog",1=>"Cat",2=>"Horse",3=>"Bird");
    print_r(array_slice($a,-2,1));
    ?>

  2. #2
    Join Date
    Sep 2011
    Posts
    10

    Default

    thank you for knowledge.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •