Last updated on February 22nd, 2022 at 01:19 pmPHP has a built in function memory_get_peak_usage() which help us to find the memory usage by a single php script in bytes. This function returns the peak of memory, in bytes, that’s been allocated to the php script. Here we are providing you a simple php function […]
Page 33 of 58
Last updated on August 8th, 2022 at 10:06 amIn this tutorial we will read the text file from bottom to top using PHP. There is array_reverse function available in PHP we are utilizing that along with the regular file function to read the file. Once each line is read using foreach statement we can assign […]
Last updated on April 19th, 2022 at 10:43 amThere are many methods in perl on how to send HTTP GET request and grab it on the targeted web page. Different modules are available which will allow us to get the requested variables easily. Here i am not going use any modules. Just a simple straight […]
Last updated on April 8th, 2022 at 11:34 amIt is always a requirement for the web developers to display the date in which their website record / table was last updated or the last date when a user has posted some comments etc., Here I am going to explain how to Find table update using […]