Bu Blogda Ara

17 Temmuz 2010 Cumartesi

php de diziler ve döngüler

Giriş

Bu var yazının son bölümlerinde nasıl metin ve değişkenler PHP ile başa çıkmak için size gösterdi ve nasıl ifadeler IF kullanabilirsiniz bunları karşılaştırmak ve kararlar almak.Nasıl PHP, döngüler bir başka önemli bölümünü kullanmak için size göstermek için gidiyorum bu bölümde.

The WHILE Loop WHILE Loop

WHILE döngü bir PHP en yararlı komutlar biridir. Aynı zamanda oldukça kurulumu kolaydır ve kullanmaktır. WHILE döngüsü, isminden de anlaşılacağı gibi, belirli bir koşul kadar karşılanmaktadır bir kod parçası yürütülür.

Repeating A Set Number Of Times Times Set Number Of A Yinelenen

If you have a piece of code which you want to repeat several times without retyping it, you can use a while loop. Onu yeniden yazmanız olmadan birkaç kez tekrarlamak istiyorum kod bir parça varsa, bir süre döngü kullanabilirsiniz. For instance if you wanted to print out the words "Hello World" 5 times you could use the following code: Örneğin size "Merhaba Dünya" 5 kat aşağıdaki kodu kullanabilirsiniz kelimeleri yazdırmak istiyorsa için:

$times = 5; $ Zaman = 5;
$x = 0; $ X = 0;
while ($x < $times) { ($ Times) <$ x while (
echo "Hello World"; echo "Merhaba Dünya";
++$x; + + $ X;
} )

I will now explain this code. Şimdi bu kodu açıklayacağız. The first two lines are just setting the variables. İlk iki satır sadece değişkenler ayarı vardır. The $times variable holds the number of times you want to repeat the code. $ Kere değişken kez kodu tekrar istediğiniz numarayı tutar. The $x variable is the one which will count the number of times the code has been executed. $ X değişkeni kez kod yürütülmesinden sayısını olacak olanıdır. After these is the WHILE line. Bu WHILE satır sonra. This tells the computer to repeat the code while $i is less than $times (or to repeat it until $i is equal to $times). $ I dolardan az kez (ya da bunu tekrarlayan kadar $ i $ eşit kat iken bu kod tekrarlamak için) bilgisayar söyler. This is followed by the code to be executed which is enclosed in { }. Bu kod tarafından hangi çalıştırılması gereken içine alınır izliyor ().

After the echo line which prints out the text, there is another very important line: metin yazdırır satır echo sonra, bir başka çok önemli satır:

++$x; + + $ X;

What this does is exactly the same as writing: Bu ne yapar tam olarak yazma aynıdır:

$x = $x + 1; $ X = $ x + 1;

It adds one to the value of $x. Dolar x. değerini bir ekler This code is then repeated (as $x now equals 1). Bu kod (as $ x şimdi 1 eşittir) tekrarlanır. It continues being repeated until $x equals 5 (the value of times) when the computer will then move on to the next part of the code. Bu x kadar $ tekrarlanma devam eşittir 5 (kez değer) Bilgisayar ardından kod sonraki bölüm için hareket edecek.

Using $x $ Kullanma x

The variable counting the number of repeats ($x in the above example) can be used for much more than just counting. Değişken tekrarlar ($ x yukarıdaki örnekte olduğu gibi) sayısını sayma için sadece sayım çok daha fazla kullanılabilir. For example if you wanted to create a web page with all the numbers from 1 to 1000 on it, you could either type out every single one or you could use the following code: Örneğin her tek bir veya aşağıdaki kodu kullanabilirsiniz, olabilirsin ya tip dışarı üzerine 1000-1 tüm numaraları ile bir web sayfası oluşturmak istiyorlarsa için:

$number = 1000; $ Sayısı = 1000;
$current = 0; $ Akım = 0;
while ($current < $number) { ($ While ($ cari
++$current; + + $ Akım;
echo "$current
";
echo "$ cari
";

} )

There are a few things to notice about this code. Bir kaç şey bu kodu ilgili fark vardır. Firstly, you will notice that I have placed the ++$current; before the echo statement. Öncelikle, ben + + $ güncel yerleştirilir farkedeceksiniz; beyanı yankı önce. This is because, if I didn't do this it would start printing numbers from 0, which is not what we want. Bu da 0 dan, bu bizim istediğimiz değil baskı sayıları başlayacak yapmadı eğer olmasıdır. The ++$current; line can be placed anywhere in your WHILE loop, it does not matter. + + $ Akım; satırı her yerde WHILE döngüsü içinde yer olabilir, hiç önemli değil. It can, of course, add, subtract, multiply, divide or do anthing else to the number as well. Tabii, ekleyebilir, çıkarma, çarpma veya bölme başka numaraya de olsaydın yok.

The other reason for this is that, if the ++$current; line was after the echo line, the loop would also stop when the number showed 999 because it would check $current which would equal 1000 (set in the last loop) and would stop, even though 1000 had not yet been printed. bu için diğer nedeni de, + + $ akım; satır satır echo sonra döngü de dolar olan 1000 (son döngü set eşit olacaktır geçerli onay çünkü zaman sayı 999 gösterdi durur olsaydı) ve rağmen, 1000 henüz basılmış olmamıştı tutardım.

Arrays Diziler

Arrays are common to many programing languages. Diziler çok programlama dilleri yaygındır. They are special variables which can hold more than one value, each stored in its own numbered 'space' in the array. Onlar bir değer, kendi içinde her depolanan fazla tutabilir özel değişkenlerdir 'dizisinde yer sayılı. Arrays are extremely useful, especially when using WHILE loops. Diziler son derece yararlı, özellikle WHILE döngüleri kullanıyor.

Setting Up An Array Dizi bir Ayarlama

Setting up an array is slightly different to setting up a normal variable. Normal bir değişken kurmanın bir dizi ayarlama biraz farklıdır. In this example I will set up an array with 5 names in it: Bu örnekte ben de 5 isimlerle bir dizi kuracak:

$names[0] = 'John'; $ Isim [0] = 'John';
$names[1] = 'Paul'; $ Isim [1] = 'Paul';
$names[2] = 'Steven'; $ Isim [2] = 'Steven';
$names[3] = 'George'; $ Isim [3] = 'George';
$names[4] = 'David'; $ Isim [4] = 'David';

As you can see, the parts of an array are all numbered, starting from 0. Gördüğünüz gibi, bir dizi bölümleri hepsi, 0 dan başlayarak numaralandırılır. To add a value to an array you must specify the location in the array by putting a number in [ ]. bir dizi size [] bir numara koyarak dizideki yerini belirlemeniz gerekir değerini ekleyin.

Reading From An Array Dizi An Okuma Gönderen

Reading from an array is just the same as putting information in. All you have to do is to refer to the array and the number of the piece of data in the array. bir diziden Okuma sadece yapmanız gereken tüm içeri bilgi koyarak aynı diziye ve dizi veri parçası sayısına bakın muhtemeldir. So if I wanted to print out the third name I could use the code: Ben de kodu kullanabilirsiniz üçüncü adını yazdırmak istedim:

n n
echo "The third name is $names[2]"; echo "üçüncü adı" $ isim [2];

Which would output: Hangi şekilde görüntülenir:

The third name is Steven Üçüncü isim Steven olduğunu

Using Arrays And Loops Döngüler kullanarak Diziler Ve

One of the best uses of a loop is to output the information in an array. Bir bir döngünün en iyi kullanan çıkış bilgileri bir dizi olduğunu. For instance if I wanted to print out the following list of names: Örneğin ben isimleri aşağıdaki listede çıktısını istiyorlarsa için:

Name 1 is John Adı 1 John
Name 2 is Paul Adı 2 Paul
Name 3 is Steven Adı 3 Steven olduğunu
Name 4 is George Adı 4 George
Name 5 is David Adı 5 David

I could use the following code: Ben aşağıdaki kodu kullanabilirsiniz:

$number = 5; $ Sayı = 5;
$x = 0; $ X = 0;
while ($x < $number) { ($ Sayı)
$namenumber = $x + 1; $ Namenumber = $ x + 1;
echo "Name $namenumber is $names[$x]
";
namenumber "Adı echo $" dır $
] isimleri $ x [;

++$x; + + $ X;
} )

As you can see, I can use the variable $x from my loop to print out the names in the array. Gördüğünüz gibi, ben x benim döngü dan dizideki isimlerini yazdırmak için değişken $ kullanabilirsiniz. You may have noticed I am also using the variable $namenumber which is always 1 greater than $x. Sen de her zaman 1 YTL'den büyük x. olduğu namenumber değişken $ kullanıyorum fark olabilir This is because the array numbering starts from 0, so to number the names correctly in the output I must add one to the actual value. dizi 0 dan, sayı çok doğru çıktı ben gerçek değeri bir eklemelisiniz isimleri başlar numaralandırma olmasıdır.

Part 5 Bölüm 5

In the next part I will show you how you can send e-mail using PHP. Gönderdiğiniz nasıl sonraki bölümde Ben e-mail PHP kullanarak gösterecektir.

Hiç yorum yok:

Yorum Gönder