Page 1 of 2 12 LastLast
Results 1 to 10 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
    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) ;

  4. #4
    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.

  5. #5
    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.

  6. #6
    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);

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

    Default

    DAY 3 - strlen()

    http://php.flashwebhost.com/vineesh/day3/strlen.php

    Code
    Code:
    <?php
    
    $sentenceOne = 'Hello, I am Vineesh Mohan';
    $sentenceTwo = 'I am working in FlashWebHost.com';
    $sentenceThree = 'FlashWebHost.com provides Domain Registration, Hosting And Web Design Services';
    
    echo $sentenceOne . '<br>';
    echo $sentenceTwo . '<br>';
    echo $sentenceThree . '<br> <br>';
    
    
    echo strlen ($sentenceOne) . '<br>' ;
    echo strlen ($sentenceTwo) . '<br>' ;
    echo strlen ($sentenceThree);
    Another one:

    http://php.flashwebhost.com/vineesh/day3/strlen_1.php

    Code:
    <?php
    
    $name = 'Vineesh Mohan';
    $place = 'Kodamthuruth';
    $city = 'Alappuzha';
    
    
    echo 'I am ' . $name . '<br>' ;
    echo 'My native is ' . $place . '<br>';
    echo $place . 'is located in ' . $city . ' district. <br> <br>'; 
    
     
    echo 'First two lines contain ' . strlen ($name) . ', ' . strlen($place) . ' letters respectively. And the Third line contains ' . strlen('Kodamthuruthis located in Alappuzha district.') . ' letters.' ;
    Last edited by vineesh; 05-10-2014 at 10:36 AM.

  8. #8
    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) ;

  9. #9
    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);

  10. #10
    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) ;

Page 1 of 2 12 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
  •