Jump to content
Larry Ullman's Book Forums

A General Question 'Php Vs Ruby'


 Share

Recommended Posts

I guess you've been asked this many times...but amuse us this one time.

 

In your opinion, if you met a beginner web developer and had to advise him/her on what Web Developing language to begin with, keeping in mind the Framework applications that are out there.

 

Would you recommend PHP or Ruby?

 

:D

Link to comment
Share on other sites

  • 4 years later...

I would recommend reading the following article of Alan Storm regarding the difference between Php and Python 

Some of the these aproach problems were overcome by introducing the namespace concept in php.

These differences are due to the development of the PHP language which was not a designed from start but evolved naturaly.

 

An example with namespaces in php showing how we can solve nowadays these fine pecularities

<?php

namespace Earth;

    #File: hello_earth.php
    function hello()
    {
    echo "Hello Earth! \n";
    }
    
    hello();

?>
<?php

namespace Mars;

#File: hello_mars.php
function hello()
{
    echo "Hello Mars! Mind the germs.  \n";
}

hello();

?>
<?php

    namespace Solar;
    
    include 'hello_earth.php';
    include 'hello_mars.php';

    echo "Starting up a solar system \n";
    
    /* Usage with use
    use Earth;
    use Mars;
     
    Earth\hello();
    Mars\hello();
   */
    
    \Earth\hello();
    \Mars\hello();
    


?>
Link to comment
Share on other sites

 Share

×
×
  • Create New...