Sabtu, 26 Maret 2011

:: Pengenalan PHP ::

PHP
¢ Tag dimulai dengan <?php, dan diakhiri dengan ?>
¢ Struktur mirip C / C++, tidak perlu deklarasi tipe data.
¢ Nama file berekstensi .php
¢ Tips:
Gunakan lowercase untuk nama file, tanpa spasi.
— File utama beri nama index.php / default.php/ home.php.
 —Urutan eksekusi :
¢  index.php index.pl index.cgi index.asp index.shtml index.html index.htm
¢  default.php default.pl default.cgi default.asp default.shtml default.html default.htm
¢  home.php home.pl home.cgi home.asp home.shtml home.html home.htm

ECHO STATEMENT
¢ Tampilkan tulisan menggunakan echo.
¢ Contoh :
      <html>

      <head>
      <title>PHP Test</title>
      </head>
      <body>
      <?php echo '<p>Halo Dunia</p>'; ?> 

      </body>
      </html>
¢ Keterangan lebih lanjut, baca php manual tentang echo( ).
¢ Variabel diawali dengan tanda $

TIPE DATA
¢ PHP mendukung beberapa tipe data:
   1. Skalar:
      ¢ Boolean
      ¢ Integer 
      ¢ Float
      ¢ String 
— 
  2. Compound:
     ¢ Array
     ¢ Object

  3. Special:
     ¢ Resource
     ¢ Null

BOOLEAN
¢  Menggunakan Keyword TRUE / FALSE (case insensitive). 
¢  Contoh:
     <?php
     $foo = True;
     ?>
¢  Semua nilai selain 0 dianggap True jika dikonversi ke boolean (termasuk nilai negatif).

STRING
¢ <?php
echo 'this is a simple string';
echo 'You can also have embedded newlines in 
strings this way as it is
okay to do';
// Outputs: Arnold once said: "I'll be back"
   echo 'Arnold once said: "I\'ll be back"';
// Outputs: You deleted C:\*.*?
   echo 'You deleted C:\\*.*?'; 
// Outputs: You deleted C:\*.*?
   echo 'You deleted C:\*.*?';
// Outputs: This will not expand: \n a newline
   echo 'This will not expand: \n a newline';
// Outputs: Variables do not $expand $either
   echo 'Variables do not $expand $either';
?> 


Tidak ada komentar:

Posting Komentar