User-submitted PHP Projects

31
1180 reads
MeasureTimeOfLoadingPage
Check How Much time does your script takes to execute and load the page completely
Run It Now!
21
1096 reads
RegisterShutDownFunction
There is a function called register_shutdown_function(), which will let you execute some code right before the script finishes running. Imagine that you want to capture some benchmark statistics at t
Run It Now!
24
913 reads
FunctionAnyNumberofArguments
Sometime it is required to make a function that can accept any number of arguments and work according to that this example describes how to do that.
Run It Now!
29
1087 reads
Compression
When talking about compression, we usually think about files, such as ZIP archives.
Run It Now!
40
1147 reads
SerializeUnserialize
Have you ever needed to store a complex variable in a database or a text file?
Run It Now!
32
1216 reads
StringPalindrome
Removes any non-alphanumeric characters (spaces, commas, exclamation points, etc.) to allow for full sentences as above, as well as simple words.
Run It Now!
24
943 reads
ASCIICharachters
Learn how to work with ASCII Characters and Numbers
Run It Now!
37
922 reads
CalculationSystemTime
System Time is the amount of time the CPU spends performing system calls for the kernel on the program's behalf.
Run It Now!
32
1234 reads
PowerUsedByScript
CPU power the script has consumed, we need to look at the 'user time' and 'system time' values. The seconds and microseconds portions are provided separately by default.
Run It Now!