Uzay; uzay içindir, sanat; sanat için
Ben senin içinim, sen benim için
Her anlamda.
Ve ben senin içinim.
<?php /** * Income Pitbull – Quick UnZipper * Place this in the same directory of the zip file. Then go to the file in your browser, enter the file name in the textbox, and hit “Unzip”. * For security reasons, this only is allowed to run inside it’s own current directory. * It is … Devamını oku
<?php set_time_limit(0); //Unlimited max execution time $path = ‘newfile.zip’; $url = ‘http://example.com/oldfile.zip’; $newfname = $path; echo ‘Starting Download!<br>’; $file = fopen ($url, “rb”); if($file) { $newf = fopen ($newfname, “wb”); if($newf) while(!feof($file)) { fwrite($newf, fread($file, 1024 * 8 ), 1024 * 8 ); echo ‘1 MB File Chunk Written!<br>’; } } if($file) { fclose($file); … Devamını oku
https://gist.github.com/toddsby/f98d82314259ec5483d8 <?php /* * PHP: Recursively Backup Files & Folders to ZIP-File * (c) 2012-2014: Marvin Menzerath – http://menzerath.eu * contribution: Drew Toddsby */ // Make sure the script can handle large folders/files ini_set(‘max_execution_time’, 600); ini_set(‘memory_limit’,’1024M’); // Start the backup! zipData(‘/path/to/folder’, ‘/path/to/backup.zip’); echo ‘Finished.’; // Here the magic happens 🙂 function zipData($source, $destination) { if … Devamını oku
Uzay; uzay içindir, sanat; sanat için
Ben senin içinim, sen benim için
Her anlamda.
Ve ben senin içinim.
I do not like the WordPress Settings API. This tools is very useful for creating WordPress admin settings page with options. You can insert a text, textarea, radio group, checkbox and more fields in your form with this tool. Plugin/theme name: your_theme_or_plugin_name Plugin prefix: your_prefix (Choose a prefix for the code. E.g. plugin name: WP … Devamını oku
Question: How can I convert an ARRAY to a SimpleXML object in PHP? This code will convert array of any depth to xml document and works under php 5.2 Array ( [‘total_stud’]=> 500 [0] => Array ( [student] => Array ( [id] => 1 [name] => abc [address] => Array ( [city]=>Pune [zip]=>411006 ) ) … Devamını oku
Redirect Detective sitesi bir yönlendirme olduğunda bunun hangi yolu izlediğini size gösteren basit güzel bir uygulama yapmış. Redirect Detective is a free redirect checker that allows you to see the complete path a redirected URL goes through. Ne işe yarar? Affiliate linklerinizi kontrol edebilirsiniz Site taşıma sonrası yönlendirmelerin düzgün çalışmasını kontrol edebilirsinizBir Bir bağlantının zararlı … Devamını oku
Kampa gidecekler için bir malzeme listesi faydalı olabilir. Kamp Malzeme Listesi: * Kamp Çantası – giysi, çorap, gözlük vs * Çadır * Mat + Uyku tulumu * Kamp Bıçağı + çakı * Kafa Feneri + pil (+ yedek pil) * İlk yardım seti: oksijenli su, fucidin krem (antibiyotikli), yara bandı, sargı bezi, ağrı kesici ve diğer … Devamını oku
IcoMoon web uygulamaları için vektörel icon çözümü sağlayan güzel bir servis. Ancak ben isteğim ikonları seçip sadece bunları export edip kullanabilme güzelliğini sevdim. Tavsiye olur. https://icomoon.io/app/
Şans oyunlarına eskiden beridir karşı olan birisi olarak, eğer On Numara, Şans Topu, Süper Loto, Sayısal Loto gibi oyunlarla hayatını değiştirmek isteyenler vardır diye düşünüp bir hesaplama yaptım. Buna göre bu oyunlarda kazanma şansınız yok denecek kadar az, yani milyonda bir gibi ihtimaller söz konusu. Örneğin sayısal loto için olasılık hesabı şu şekilde yapılır: 6! … Devamını oku