Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 34

Thread: Day 3 - String Operations - Become PHP Expert in 30 days.

  1. #11
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    Quote Originally Posted by image View Post
    DAY 3 PHP PROGRAMMING

    http://php.flashwebhost.com/tom/strlen.php

    Code:
    <?php
    
    
    $movieName = 'Peruvannapurathe Visheshangal' ;
    
    
    echo strlen($movieName) ;
    Good

    Code:
    <?php
    
    $movieName = 'Peruvannapurathe Visheshangal' ;
    
    echo strlen($movieName) ;
    echo '<br>';
    echo strtolower($movieName) ;
    echo '<br>';
    echo strtoupper($movieName) ;
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  2. #12
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    http://php.flashwebhost.com/sherly/pen.php

    Code:
    <?php
    
    $myPen = 'I have a blue pen';
    
    $myPen = ucwords($myPen);
    
    echo $myPen;
    
    echo '<br>';
    
    $myPencil = 'I HAVE A GREEN PENCIL';
    
    $myPencil = ucwords($myPencil);
    
    echo $myPencil;
    Last edited by sherlyk; 05-10-2014 at 03:34 PM.

  3. #13
    Join Date
    Feb 2007
    Posts
    26,214

    Default

    DAY 3 PHP PROGRAMMING

    http://php.flashwebhost.com/tom/strtoupper.php

    Code:
    <?php
    
    
    $movieName = 'Drishyam' ;
    $banner = 'Aashirvad Cinemas' ;
    $director = 'Jeethu Joseph' ;
    
    
    echo strtoupper($movieName) ;
    
    
    echo '<br>';
    
    
    echo strtoupper($banner) ;
    
    
    echo '<br>';
    
    
    echo strtoupper($director) ;

  4. #14
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    http://php.flashwebhost.com/sherly/kitty.php

    Code:
    <?php
    
    $myCat = 'I love my kitty';
    
    $myCat = str_replace('kitty', 'puppy', $myCat);
    
    echo $myCat;

  5. #15
    Join Date
    Sep 2003
    Location
    india
    Posts
    11,527

    Default

    http://php.flashwebhost.com/annie/test.php

    Code:
     
    
    <?php
    $actressName = 'Meera jasmine';
    $actressName = str_replace ('jasmine', 'Anil John', $actressName);
    echo $actressName;

  6. #16
    Join Date
    Feb 2007
    Posts
    26,214

    Default

    DAY 3 PHP PROGRAMMING

    http://php.flashwebhost.com/tom/strtolower.php

    Code:
    <?php
    
    
    $studentName = 'Tina' ;
    $schoolName = 'Bishop Moore';
    $class = 'LKG' ;
    
    
    echo strtolower($studentName);
    
    
    echo '<br>';
    
    
    echo strtolower($schoolName);
    
    
    echo '<br>';
    
    
    echo strtolower($class) ;

  7. #17
    Join Date
    Nov 2009
    Location
    kerala
    Posts
    19,076

    Default

    In 3rd day tutorial, under ucfirst() function, added PHP code for ucwords()


    Please edit and add examples of ucfirst() also.

  8. #18
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    Quote Originally Posted by sibichan1 View Post
    In 3rd day tutorial, under ucfirst() function, added PHP code for ucwords()


    Please edit and add examples of ucfirst() also.
    That is fixed, no ucfirst() this time, lets keep it simple, we don't need to learn everything. We can learn more functions as required.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  9. #19
    Join Date
    May 2014
    Posts
    21

    Post code correction

    Quote Originally Posted by sherlyk View Post
    http://php.flashwebhost.com/sherly/pen.php

    Code:
    <?php
    
    $myPen = 'I have a blue pen';
    
    $myPen = ucwords($myPen);
    
    echo $myPen;
    
    echo '<br>';
    
    $myPencil = 'I HAVE A GREEN PENCIL';
    
    $myPencil = ucwords($myPencil);
    
    echo $myPencil;
    
    ?>
    In this code ?> is not necessary. ?> is used only when php is used in between other language codes.

  10. #20
    Join Date
    Feb 2007
    Posts
    26,214

    Default

    DAY 3 PHP PROGRAMMING

    ucfirst
    ---------

    http://php.flashwebhost.com/tom/ucfirst_1.php

    Code:
    <?php
    
    
    $movieName = 'malayalam film perucahzhi';
    $movieName = ucfirst($movieName);
    
    
    $starring = 'mohanlal, mukesh';
    $starring = ucfirst($starring);
    
    
    echo $movieName;
    
    
    echo '<br>';
    
    
    echo $starring;

    http://php.flashwebhost.com/tom/ucfirst.php

    Code:
    <?php
    
    
    $filmName = 'peruchazhi';
    
    
    $director = 'arun vaidyanathan';
    
    
    $producer = 'sandra thomas';
    
    
    echo ucfirst($filmName);
    
    
    echo '<br>';
    
    
    echo ucfirst($director);
    
    
    echo'<br>';
    
    
    echo ucfirst($producer);


    ucwords
    -----------

    http://php.flashwebhost.com/tom/ucwords_1.php

    Code:
    <?php
    
    
    $movieName = 'malayalam film perucahzhi';
    $movieName = ucwords($movieName);
    
    
    $starring = 'mohanlal, mukesh';
    $starring = ucwords($starring);
    
    
    echo $movieName;
    
    
    echo '<br>';
    
    
    echo $starring;

    http://php.flashwebhost.com/tom/ucwords.php

    Code:
    <?php
    
    
    $filmName = 'peruchazhi';
    
    
    $director = 'arun vaidyanathan';
    
    
    $producer = 'sandra thomas';
    
    
    echo ucwords($filmName);
    
    
    echo '<br>';
    
    
    echo ucwords($director);
    
    
    echo'<br>';
    
    
    echo ucwords($producer);

Page 2 of 4 FirstFirst 1234 LastLast

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
  •