Sunday, August 31, 2014

How To: Missing String Related Functions in C++ - Replace, Split, Trim etc.

String manipulation functions are really important and we often find ourselves needing them while coding in C++. High-level languages like C# and Java etc. provide such functions through methods of a string class. However, they are not inherently present in C++. Here are some of the more frequently used string related functions. They are pretty self-explanatory. All of them are independent functions....

Thursday, August 28, 2014

PHP 7: What To Expect? Features and Expected Release Date

We are not completely sure about the exact feature set of version 7 of PHP. There are some features that we can talk about since they are being implemented in PHP 7. The rest we can only speculate based on reasonable guesses. 1. PHPNG to Become Basis for PHP 7 PHPNG is an improved PHP codebase...

C++ - Get File Size in KB/MB/GB Format using stat()

This code uses stat() function of the built-in sys/stat.h header file, to get the size of a file. The size is then passed to convertSize function which converts the file size to a suitable unit and returns the result as a string value. You might want to know that stat(), however, isn't...