Skip to content

Category Archives: PHP

Graphics Draw or GD library is an open-source library for dynamic creation of images. It is used to create and manipulate image files in a… Read More
The assertEqualsIgnoringCase() function is a builtin function in PHPUnit and is used to check whether the expected string is equal to actual string ignoring the… Read More
The assertNotEqualsIgnoringCase() function is a builtin function in PHPUnit and is used to assert whether the expected string is not equal to actual string but… Read More
The assertFileEquals() function is a builtin function in PHPUnit and is used to assert whether the actual file content is exactly the same as the… Read More
The assertFileNotExists() function is a builtin function in PHPUnit and is used to assert whether a file exists at a given path or not. This… Read More
The assertDirectoryIsNotWritable() function is a builtin function in PHPUnit and is used to assert whether the directory specified is a non-writable directory or not. This… Read More
The assertFileExists() function is a builtin function in PHPUnit and is used to check whether an file path exists or not. This assertion will return… Read More
Introduction: PHP is a popular general-purpose scripting language. It is used for web development. It was created by Rasmus Lerdorf in 1994, the PHP reference… Read More
The mhash_get_block_size() function is an inbuilt function in PHP which is used to gets the block size of the specified hash. Gets the highest available… Read More
The assertFileNotEquals() function is a builtin function in PHPUnit and is used to assert whether the actual file content is different from expected file content… Read More
The assertStringNotMatchesFormat() function is a builtin function in PHPUnit and is used to assert whether the difference between the given string and given format. This… Read More
The assertStringMatchesFormat() function is a builtin function in PHPUnit and is used to assert whether the given string is matched with the format  or not.… Read More
In any web application we need to save, update, insert and fetch data to and from a database. AngularJS is a JavaScript MVC or Model-View-Controller… Read More
Asynchronous HTTP request helps us to process HTTP requests using non-blocking input or output, in different threads. Some refer to it as COMET capabilities. The… Read More
Many times, we are very familiar with “latest blogs” or “recent posts” in the websites. So now, here is a simple solution for displaying the… Read More