Rss Feed
  1. Image proceesing

    Friday 26 April 2013

    To get file name and  type
    pathinfo

    Example #1 pathinfo() Example
    <?php
    $path_parts = pathinfo('/www/htdocs/inc/lib.inc.php');

    echo $path_parts['dirname'], "\n";
    echo $path_parts['basename'], "\n";
    echo $path_parts['extension'], "\n";
    echo $path_parts['filename'], "\n"; // since PHP 5.2.0
    ?>
    The above example will output:
    /www/htdocs/inc
    lib.inc.php
    php
    lib.inc


    getimagesize() — Get the size of an image

  2. 0 comments:

    Post a Comment