diff options
author | Haydar Kulekci <haydarkulekci@gmail.com> | 2013-09-18 15:51:20 +0300 |
---|---|---|
committer | Haydar Kulekci <haydarkulekci@gmail.com> | 2013-09-18 15:51:20 +0300 |
commit | 75a7261f7e22fb321c2646123b4f1981f835003c (patch) | |
tree | 5c361eda317778e771938ed471cec65b338ed827 /tr-tr/php-tr.html.markdown | |
parent | 17c69eeb16f193b319d2e73cff3ebce55ec744a8 (diff) |
added latest updates from php-en
Diffstat (limited to 'tr-tr/php-tr.html.markdown')
-rw-r--r-- | tr-tr/php-tr.html.markdown | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tr-tr/php-tr.html.markdown b/tr-tr/php-tr.html.markdown index c5576fd7..3db437cf 100644 --- a/tr-tr/php-tr.html.markdown +++ b/tr-tr/php-tr.html.markdown @@ -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. |