mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 15:24:09 +03:00
added latest updates from php-en
This commit is contained in:
parent
17c69eeb16
commit
75a7261f7e
@ -146,6 +146,11 @@ echo $associative['One']; // 1 yazdıracaktır.
|
||||
$array = ['One', 'Two', 'Three'];
|
||||
echo $array[0]; // => "One"
|
||||
|
||||
// Dizinin sonuna bir eleman ekleme
|
||||
$array[] = 'Four';
|
||||
|
||||
// Diziden eleman silme
|
||||
unset($array[3]);
|
||||
|
||||
/********************************
|
||||
* Çıktı
|
||||
@ -692,7 +697,7 @@ $cls = new SomeOtherNamespace\MyClass();
|
||||
|
||||
Referans ve topluluk yazıları için [official PHP documentation](http://www.php.net/manual/) adresini ziyaret edin.
|
||||
|
||||
Gncel en yi örnekler için [PHP Usulüne Uygun](http://kulekci.net/php-the-right-way/) adresini ziyaret edin.
|
||||
Güncel en yi örnekler için [PHP Usulüne Uygun](http://kulekci.net/php-the-right-way/) adresini ziyaret edin.
|
||||
|
||||
Eğer bir paket yöneticisi olan dil kullandıysanız, [Composer](http://getcomposer.org/)'a bir göz atın.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user