Tag Archive for: "jquery-demos"

  1. Demos

    PHP Replace Array Value Example

    One of the coolest things of array is that you can hold as much data as you need. So when dealing with arrays, there might have been a time when one would come across a requirement to replace or change array value with another value. In this article, I am going to show you how […]

  2. PHP

    PHP Delete Item From Array Examples

    Arrays, as always, have been a very important concept. While working with arrays, there might have been an instance where you wanted to delete an array element. In this article, I am going to share with you easy ways to use PHP to delete item from array by means of easy examples.

  3. PHP

    Using PHP To Find Value In Array

    Arrays are very important concept, be it any programming language. So while working with arrays, there might be a necessity to find a specific value in an array. In this article, I am going to share a very simple yet easy way to use  PHP to find value in array by means of examples. How to […]

  4. PHP

    How To Delete File Or Remove File Using PHP Examples

    When working with files in PHP, there may be a necessity to create files dynamically and at the same time, remove file or delete file using PHP.  In this article, I am going to share a very easy way to delete a file using PHP. The actual code is just 1 line, so it’s super easy to […]

  5. PHP

    How To Remove Last Character From String Using PHP – Examples

    Some times while dealing with strings in PHP, it may be required to remove the last character of a string. In this article, I am going to share very easy ways of removing last character from string using PHP by means of multiple examples.

  6. PHP

    How To Remove Duplicates From Array Using PHP

    While working with arrays, there may have been a time when you came across duplicate values in array. In some cases, these duplicates values are undesirable and you may want to remove these duplicate values from the same array. So do you know how to remove duplicate values from array? If not then here are […]

  7. PHP

    PHP Remove Value From Array Examples

    While dealing with arrays in PHP, there could be times when you would want to remove a specifc value from array, once you know what that value is. This could help you retain only the data that you want in the array. So do you know how to use PHP to remove value from array? […]

  8. PHP

    How To Remove Whitespaces Using PHP – Examples

    If you have read my previous article on how to remove spaces from string, then you would be interested in this article too. In general terms, space is nothing but a gap between two words whereas a “whitespace” could be a tab, a space,  a line feed or a carriage return. The procedure to remove […]

  9. PHP

    How To Remove Spaces From String Using PHP

    When dealing with strings, a single space or multiple spaces could be the part of content. So at times, it might be necessary to remove this single space or remove the multiple spaces from string. So if you do not know how to remove space from string, then this article is for you. In this […]