diff options
author | Adam Bard <github@adambard.com> | 2013-09-19 23:18:15 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-09-19 23:18:15 -0700 |
commit | a62bb8d55321a1b10ebe420bb2d04b446fecc333 (patch) | |
tree | 1ab259e6256e38f26bf2351242aefc4d5a0d0c49 | |
parent | f3956625ff41248b1e6bb08d5fd0d328f7740b7b (diff) | |
parent | 75a7261f7e22fb321c2646123b4f1981f835003c (diff) |
Merge pull request #353 from hkulekci/php-update
[php/tr] added latest updates from php-en
-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. |