Re: php style guides

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



try http://pear.php.net/manual/en/standards.php


On Wed, 12 Jan 2005 23:34:59 +1030, Tim Burgan <email@xxxxxxxxxxxxx> wrote:
> Hi everyone,
> 
> What 'rules' do you follow about styling/formatting your PHP code? Do
> you follow a guide that is available online?
> 
> I generally have my own preference for formatting like
> 
> if ( condition )
> {
>     statements;
> }
> 
> for all conditional statements and loops, as opposed to
> 
> if (condition) {
>     statements;
> }
> 
> But what I'm really wanting to get everyones thoughts about is in regard
> to combining PHP with HTML.
> 
> I used to do:
> 
> <?php
>    echo "blah";
>    ?><h1>test</h1><?php
>    echo "blah";
> ?>
> 
> but just tried
> 
> <?php
>    echo 'blah';
>    echo '<h1>test</h1>';
>    echo 'blah';
> ?>
> 
> which I find it's much easier to read to code.
> 
> What do other people do and for what reason? What are the
> advantages/disadvantages to doing it certain ways?
> 
> Thanks for your time.
> 
> Tim
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux