Page 2 of 2 FirstFirst 12
Results 11 to 20 of 34

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

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Nov 2009
    Posts
    76,596

    Default

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

    Code:
    $string_Quotes = 'A friend is someone who knows all about you and still loves you';
    $string_Quotes = ucfirst($string_Quotes);
    echo $string_Quotes;
    Last edited by sherlyk; 05-10-2014 at 06:28 AM.

  2. #2
    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;

  3. #3
    Join Date
    Oct 2003
    Location
    Kochi, Kerala, India
    Posts
    21,389

    Default

    Convert Text to Upper Case.
    http://php.flashwebhost.com/vineesh/day3/strtoupper.php

    Code
    Code:
    <?php
    
    $name = 'Vineesh Mohan';
    $place = 'Kodamthuruth';
    $city = 'Alappuzha';
    
    
    echo strtoupper($name) . '<br>';
    echo strtoupper($place) . '<br>';
    echo strtoupper($city);
    Convert Text to Lower Case.
    http://php.flashwebhost.com/vineesh/day3/strtolower.php

    Code
    Code:
    <?php
    
    $name = 'Vineesh Mohan';
    $place = 'Kodamthuruth';
    $city = 'Alappuzha';
    
    
    echo strtolower($name) . '<br>';
    echo strtolower($place) . '<br>';
    echo strtolower($city) ;

  4. #4
    Join Date
    Oct 2003
    Location
    Kochi, Kerala, India
    Posts
    21,389

    Default

    Convert First Letter of Words to Upper Case
    http://php.flashwebhost.com/vineesh/day3/ucwords.php

    code
    Code:
    <?php
    
    $color = 'my favourite color is white';
    
    $food = 'my favourite food is biriyani';
    
    echo ucwords($color) . '<br>';
    echo ucwords($food);

  5. #5
    Join Date
    Nov 2004
    Location
    India
    Posts
    65

    Default

    http://php.flashwebhost.com/stefin/sentence.php

    Code:
    <?php
    $sentence = 'have a nice day!!' ;
    echo strlen($sentence) ;

  6. #6
    Join Date
    Nov 2004
    Location
    India
    Posts
    65

    Default

    http://php.flashwebhost.com/stefin/dragon.php
    Code:
    <?php
    
    
    $myWolf = 'I have a pet shadow wolf';
    
    
    $myWolf = ucwords($myWolf);
    
    
    echo $myWolf;
    
    
    echo '<br>' ;
    
    
    $myDragon = 'I Have A Lightning Dragon';
    
    
    $myDragon = ucwords($myDragon);
    
    
    echo $myDragon;

Page 2 of 2 FirstFirst 12

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
  •