Post by tag: programming

Get site ranking with python and beautifulsoup
To get information about site, we can use alexa.com but sometimes we just need some pieces of information like ranking of site global or local country. In this case i just need that information, when …

php: array_key_exists or isset
we all know array_key_exists is a function and _isset_ is a keyword, later, i think array_key_exists and _isset_ in PHP is a same or array_key_exists is shortcut for isset. But when i read on php …

Default value for return
2012/04/09 programming opini
A few days ago, i try to create a code with PHP, with a function i do a return in function with some values and then i got a mystery about default value for return keyword, to get absolutelly value …

Using keyword as method in PHP
As we know, we can’t use keyword like if, while in common language programming as function, method or variables, neither does in PHP Programming. Last time, i agree with this condition, but when …

PHP: Menghitung lama eksekusi sebuah skrip
![](http://2.bp.blogspot.com/-JLzChwOBXv4/T0d_Jj8_HYI/AAAAAAAAArA/BGcIwYJeqeQ/ s1600/time.png) Untuk apa menghitung lama eksekusi sebuah skrip? Alasan utama adalah performance dari skrip yang dibuat, …