Archive for the 'pemrogramman' Category

cURL dan libcurl dgn PHP

mira_unique19 -

Jika Anda belum pernah mendengar cURL: cURL (dibaca: si URL) singkatan dari Client URL dan dikembangkan oleh Daniel Stenberg pada tahun 1998 sebagai alat bantu command line untuk transfer files dengan sintaks URL melalui bermacam-macam protokol (FTP, HTTP, HTTPS, SCP, SFTP, TELNET, LDAP, dsb). Sedangkan libcurl adalah library portable yang menyediakan interface (untuk berbagai bahasa [...]

Read More..>>

how to get the date yesteday

mira_unique19 -

misal : untuk tanggal sekarang ” 2007-10-18 ” Find Yesterday’s date : * echo date(“Y-m-d”, strtotime(“-1 days”)); * hasil : 2007-10-17 * echo date(“Y-m-d”, strtotime(“+1 day”)); * hasil : tanggal besok : 2007-10-19 Find Date one week ago : * echo date(“Y-m-d”, strtotime(“-1 weeks”)); * hasil :2007-10-11 Find Date one month after : * echo [...]

Read More..>>