Generated by All in One SEO v5.0.1.1, this is an llms.txt file, used by LLMs to index the site. # Solution Tutorials Tutorials, tips, tricks and code snippets ## Sitemaps - [XML Sitemap](https://soltuts.com/sitemap.xml): Contains all public & indexable URLs for this website. ## Posts - [Blog](https://soltuts.com/blog/) - [How to change the style of the title attribute inside an anchor tag?](https://soltuts.com/how-to-change-the-style-of-the-title-attribute-inside-an-anchor-tag/) - The option is to make a false-tool-tip using CSS properties according to the wish. For doing this, the data-title attribute must be used. 1. Code: How to Change the Style of Anchor Tag Title Attribute? [data-title]:hover:after { visibility: visible; } [data-title]:after { content: attr(data-title); background-color: #4b9c2c; color: #ffffff; - [How to copy the content of a div into another div using jquery?](https://soltuts.com/how-to-copy-the-content-of-a-div-into-another-div-using-jquery/) - In this post, we will show you how to copy the content of a div into another div using jQuery. - [How to change the style of alert box using css?](https://soltuts.com/how-to-change-the-style-of-alert-box-using-css/) - In this article, we will design the alert box. To design the alert box we need jQuery then by using the only CSS we can do that. - [How to replace the content of an element using jquery?](https://soltuts.com/how-to-replace-the-content-of-an-element-using-jquery/) - To replace the content of an element using jQuery, use the text() method. - [How to change input box borders after filling the box using javascript ?](https://soltuts.com/how-to-change-input-box-borders-after-filling-the-box-using-javascript/) - In this article, we will change the input border after filling the text on the input text field using JavaScript. The onchange event attribute works when the value of the element changes and selects the new value from the list. - [How to create liquid filling effect on text using HTML and CSS ?](https://soltuts.com/how-to-create-liquid-filling-effect-on-text-using-html-and-css/) - The liquid fill text animation can be done using CSS | ::before selector. We will use key frames to set height for each frame of animation. Please make sure you know about both CSS | ::before selector and CSS | @keyframes Rule before try this code. - [How to disable copy content function using jquery?](https://soltuts.com/how-to-disable-copy-content-function-using-jquery/) - To disable cut, copy and paste of a content in jQuery, use the jQuery bind() function. - [How to clone an element using jquery?](https://soltuts.com/how-to-clone-an-element-using-jquery/) - To clone an element using jQuery, use the jQuery.clone() method. The clone() method clones matched DOM Elements and select the clones. - [How to check whether a string has no whitespace in php?](https://soltuts.com/how-to-check-whether-a-string-has-no-whitespace-in-php/) - To check whether a string has no whitespace, use the preg_match() in PHP. - [How to count the number of substring using mb_substr_count() in php?](https://soltuts.com/how-to-count-the-number-of-substring-using-mb_substr_count-in-php/) - In PHP, we can use the function mb_substr_count() to count the total number of substrings in a given string. - [How to find the position of the first occurrence of a substring in a string in php?](https://soltuts.com/how-to-find-the-position-of-the-first-occurrence-of-a-substring-in-a-string-in-php/) - In PHP, the iconv_strpos() function is used to read the first character from a given string. It finds the position of the first occurrence of a character in a string. It is an inbuilt function in PHP. - [How to find the last occurrence of a needle within a haystack in php?](https://soltuts.com/how-to-find-the-last-occurrence-of-a-needle-within-a-haystack-in-php/) - In PHP, the iconv_strrpos() function is used to findsthe last occurrence of a needle within a haystack. - [How to get the width of an element using jQuery?](https://soltuts.com/how-to-get-the-width-of-an-element-using-jquery/) - In this post, we will show how to get the width of an element using jQuery, using the width() method. - [How to create a 3D text effect using html and css?](https://soltuts.com/how-to-create-a-3d-text-effect-using-html-and-css/) - The 3D text effect is one of the most used text effects in the web design world. Today we will be looking at one of the simplest and easy methods to create our text in a 3D look. - [How to set the content of a textarea using jQuery?](https://soltuts.com/how-to-set-the-content-of-a-textarea-using-jquery/) - In this post, we will show you set the content of a textarea using jQuery. - [How to enable or disable nested checkboxes in jQuery ?](https://soltuts.com/how-to-enable-or-disable-nested-checkboxes-in-jquery/) - In this article, we will see how to enable or disable nested checkboxes in jQuery. To do that, we select all child checkboxes and add disabled attributes to them with the help of the attr() method in jQuery so that all checkboxes will be disabled. - [How to double layered text effect using css?](https://soltuts.com/how-to-double-layered-text-effect-using-css/) - In this post, we will show you how to double layered text effect using CSS. - [What is the difference between json and xml?](https://soltuts.com/what-is-the-difference-between-json-and-xml/) - In this article, we are going to see difference between JSON and XML. - [How to convert json file into csv in php?](https://soltuts.com/how-to-convert-json-file-into-csv-in-php/) - In this article, we are going to see how to convert JSON data into a CSV file using PHP. - [How to convert xml data into json using php?](https://soltuts.com/how-to-convert-xml-data-into-json-using-php/) - In this article, we are going to see how to convert XML data into JSON format using PHP . - [How to use eval function in php?](https://soltuts.com/how-to-use-eval-function-in-php/) - The eval function in PHP is an inbuilt function that evaluates a string as PHP code. - [How to load a php file into a variable in php?](https://soltuts.com/how-to-load-a-php-file-into-a-variable-in-php-2/) - The file_get_contents() or include() reads a file into a variable. This function is the preferred way to read the contents of a file into a variable. It will use memory mapping techniques, if this is supported by the server, to enhance performance. - [How to mysqli prepared statements error reporting in php?](https://soltuts.com/how-to-mysqli-prepared-statements-error-reporting-in-php/) - All of the mysqli functions return false on failure, so you could easily just check for truthiness on each function and report errors. - [How to remove next element using jQuery?](https://soltuts.com/how-to-remove-next-element-using-jquery/) - To remove the next element in jQuery, use the remove(). - [How to increase the size of a division when you click it using jQuery ?](https://soltuts.com/how-to-increase-the-size-of-a-division-when-you-click-it-using-jquery/) - In this article, we will learn how to increase the size of a division when you click on it using jQuery. - [How to disable right click option using the jQuery ?](https://soltuts.com/how-to-disable-right-click-option-using-the-jquery/) - In this article, we will see how to disable the right-click option using the jQuery bind() method. - [How to get the function name inside a function in php?](https://soltuts.com/how-to-get-the-function-name-inside-a-function-in-php/) - To get the function name inside the PHP function we need to use Magic constants(__FUNCTION__). - [How to pop an alert message box using php?](https://soltuts.com/how-to-pop-an-alert-message-box-using-php/) - The alert message just like a pop-up window on the screen. Using this you can alert to the user with some information and message. - [How to display error without alert box using javascript ?](https://soltuts.com/how-to-display-error-without-alert-box-using-javascript/) - Errors in JavaScript can be displayed without the use of alert boxes but using the alert box is the traditional way to do that. We can show errors with two methods without using the alert box. - [How to pass an object from php to javascript?](https://soltuts.com/how-to-pass-an-object-from-php-to-javascript/) - You can convert the PHP object to an array, and then use JSON function to encode it. After that, decode it from JavaScript - [How to use range() function in php?](https://soltuts.com/how-to-use-range-function-in-php/) - The range() function is an inbuilt function in PHP which is used to create an array of elements of any kind such as integer, alphabets within a given range(from low to high) i.e, list’s first element is considered as low and last one is considered as high. - [How to load a php file into a variable in php?](https://soltuts.com/how-to-load-a-php-file-into-a-variable-in-php/) - In this post, we will show you how to use one PHP file's variables in PHP. - [How to check match the first & last word from a variable in php?](https://soltuts.com/how-to-check-match-the-first-last-word-from-a-variable-in-php/) - In this post, we use php preg_match to match the first & last word in a variable with a given first & last specific words. - [How to remove html tags from a string in php?](https://soltuts.com/how-to-remove-html-tags-from-a-string-in-php/) - This example is focused on how to remove html tags from a string in php. You can removes HTML tags using strip_tags() method. - [How to get array value with a numeric index in php?](https://soltuts.com/how-to-get-array-value-with-a-numeric-index-in-php/) - In this post, we used array_values() function in php to get the value of array by position with arrays with index of 1 key. - [How to partially hide phone number in php?](https://soltuts.com/how-to-partially-hide-phone-number-in-php/) - This post is focused on partially hide phone php. We will look at example of hide phone number php. - [How to get numeric index of associative array in php?](https://soltuts.com/how-to-get-numeric-index-of-associative-array-in-php/) - The array_keys() function is an inbuilt function in PHP which is used to return either all the keys of an array or the subset of the keys. - [How to remove a key and its value from an associative array in php?](https://soltuts.com/how-to-remove-a-key-and-its-value-from-an-associative-array-in-php/) - Using unset() function: The unset() function is used to unset a key and its value in an associative array in php. - [Difference between indexed array and associative array in php?](https://soltuts.com/difference-between-indexed-array-and-associative-array-in-php/) - An array is a collection of objects that contain a group of variables stored under the same name. All the elements belong to the same data type, i.e. string, integers, or lists. Keys are unique in the case of both indexed and associative arrays. - [How to remove special character from string in php?](https://soltuts.com/how-to-remove-special-character-from-string-in-php/) - In this post,we will leran you how to remove special character from string in php. - [difference between array_merge() and array_combine() functions in php?](https://soltuts.com/difference-between-array_merge-and-array_combine-functions-in-php/) - In this post, we will show you difference between array_merge() and array_combine() functions in PHP - [difference between isset() and array_key_exists() function in php?](https://soltuts.com/difference-between-isset-and-array_key_exists-function-in-php/) - The main difference between isset() and array_key_exists() function is that the array_key_exists() function will definitely tells if a key exists in an array. - [How to use array_reduce() function in php?](https://soltuts.com/how-to-use-array_reduce-function-in-php/) - array_reduce() Method: As the name suggests, an array_reduce() function reduces the array to a single value by performing the given operation. The array_reduce() applies the callback function to the elements of the array and gives output as a single value. - [How to use array_map() function in php?](https://soltuts.com/how-to-use-array_map-function-in-php/) - The array_map() function returns an array containing the results of applying the callback to each value of the array used as arguments for the callback. - [How to use array_walk() function in php?](https://soltuts.com/how-to-use-array_walk-function-in-php/) - array_walk() Method: It applies a user-defined function to every member of an array. The array’s keys and values are parameters in the function. The array_walk() function is not affected by the internal array pointer of the array. - [How to round half up numbers in php?](https://soltuts.com/how-to-round-half-up-numbers-in-php/) - In this post, this function will round the number to half a unit in php. - [What's the difference between define and const in php?](https://soltuts.com/whats-the-difference-between-define-and-const-in-php/) - In this post, we give you the difference between const and define in PHP. - [How to use cURL in php?](https://soltuts.com/how-to-use-curl-in-php/) - CURL is the library account is used to help to make the transfer data through many other protocol (as HTTP, FPT …). - [How to check if date is future date in php?](https://soltuts.com/how-to-check-if-date-is-future-date-in-php/) - This tutorial shows you how to check date is future date in php. you will learn php check if date is after today. - [How to get short month name from date in php?](https://soltuts.com/how-to-get-short-month-name-from-date-in-php/) - In this article, we will implement a php get short month name from date. - [How to extract all email addresses from string in php?](https://soltuts.com/how-to-extract-all-email-addresses-from-string-in-php/) - In this post, I will give you simple example how to get email addresses from string content in php. - [What is the difference between new self vs new static in PHP?](https://soltuts.com/what-is-the-difference-between-new-self-vs-new-static-in-php/) - What is the difference between new self and new static? Self: Access to the class that declares it. Static: Access to the current object. - [How to remove null values from multidimensional array in php?](https://soltuts.com/how-to-remove-null-values-from-multidimensional-array-in-php/) - In this post, we would like to share with you remove null array in multidimensional array php. - [How to get Full Month Name from Date in PHP?](https://soltuts.com/how-to-get-full-month-name-from-date-in-php/) - In this article, we will implement a php get month name from date. - [How to Get All Dates Between Two Dates in PHP?](https://soltuts.com/how-to-get-all-dates-between-two-dates-in-php/) - In this post, we will give you very simple example how to get dates between two dates in PHP. - [How to get File Name and Extension from URL in PHP?](https://soltuts.com/how-to-get-file-name-and-extension-from-url-in-php/) - In this example, we will give you example how to get file name without extension and get extension from file path in php. - [How To Array Merge In PHP?](https://soltuts.com/how-to-array-merge-in-php/) - This article will give you simple two example of array merge in php. - [How to Add Month to Current Date in PHP ?](https://soltuts.com/how-to-add-month-to-current-date-in-php/) - This tutorial will give you example of add month to current date using php. - [How to use array_change_key_case Function in PHP?](https://soltuts.com/how-to-use-array_change_key_case-function-in-php/) - Now let's see example of how to use array_change_key_case function in php. - [How to Remove Duplicates From Multidimensional Array in PHP?](https://soltuts.com/how-to-remove-duplicates-from-multidimensional-array-in-php/) - In this post, you can remove duplicates from multidimensional array by value in php. - [How to calculate Age from Date of Birth in PHP?](https://soltuts.com/how-to-calculate-age-from-date-of-birth-in-php/) - In this post, we will give you very simple example how to calculate age from date of birth in PHP. - [How to Get the First Day Of Specific Month In Php ?](https://soltuts.com/how-to-get-the-first-day-of-specific-month-in-php/) - In this example,we helps you can easy and simply get the first day of specific month in php. - [How to Get Yesterday Date in PHP?](https://soltuts.com/how-to-get-yesterday-date-in-php/) - In this post, we will learn how to get yesterday date in php. - [How to creating Dynamic Countdown in PHP, JavaScript?](https://soltuts.com/how-to-creating-dynamic-countdown-in-php-javascript/) - This tutorial will give you simple example of how to PHP countdown timer using Javascript. - [How to count values from array in php?](https://soltuts.com/how-to-count-values-from-array-in-php/) - In this post, This function can count all the values of an array in - [How to combine two array in php?](https://soltuts.com/how-to-combine-two-array-in-php/) - In this post, The array_combine() is an inbuilt function in PHP which is used to combine two arrays and create a new array by using one array for keys and another array for values. - [How to use array_column() function in PHP?](https://soltuts.com/how-to-use-array_column-function-in-php/) - The array_column() function in php returns the values from a single column in the input array. - [How to use array_chunk function in PHP?](https://soltuts.com/how-to-use-array_chunk-function-in-php/) - In this post, We will use array_chunk function splits an array into chunks of new arrays in php. - [How to convert array to json in PHP?](https://soltuts.com/how-to-convert-array-to-json-in-php/) - This post will give you example of How to convert array to json in php. - [How to convert json to array in PHP?](https://soltuts.com/how-to-convert-json-to-array-in-php/) - This tutorial will give you simple example convert json to array in php. - [How to Change File Name from Folder in PHP?](https://soltuts.com/how-to-change-file-name-from-folder-in-php/) - If you need to rename file in folder php code then we can use "rename()" function of php. php provide rename function to rename your file from one place to another. - [How to move File from One Folder to Another in PHP?](https://soltuts.com/how-to-move-file-from-one-folder-to-another-in-php/) - If you need to move file from one folder to another using php code then we can use "rename()" function of php. php provide rename function to move your file from one place to another in php. - [How to Find URL in String and Make Link in PHP?](https://soltuts.com/how-to-find-url-in-string-and-make-link-in-php/) - In this post, we will give you very simple example, to find url from string and make anchor tag link using php. it will automatic create link even it's http, https, ftp and ftps url. - [How to copy file from one folder to another in PHP?](https://soltuts.com/how-to-copy-file-from-one-folder-to-another-in-php/) - In this post, we will give you very simple example and syntax how it works to copy file from one folder to another in php. - [How to check if current date is between two dates in PHP?](https://soltuts.com/how-to-check-if-current-date-is-between-two-dates-in-php/) - In this post, we can simply check if current date is between two dates in - [How to validate value is Interger in Php?](https://soltuts.com/how-to-validate-value-is-interger-in-php/) - This function checks whether a variable is of type integer or not - [How to use of uniqid function to generate a random, unique, alphanumeric string in php?](https://soltuts.com/how-to-use-of-uniqid-function-to-generate-a-random-unique-alphanumeric-string-in-php/) - The uniqid() function generates a unique ID based on the microtime (the current time in microseconds) in PHP. Generate a random, unique, alphanumeric string in PHP - [How to validate a variable is phone number in Php?](https://soltuts.com/how-to-validate-a-variable-is-phone-number-in-php/) - In this post, This function checks whether a variable is phone number or not. - [How to validate a variable is Email in Php?](https://soltuts.com/how-to-validate-a-variable-is-email-in-php/) - In this post, This function checks whether a variable is email or not. - [How to validate a variable is IP address in Php?](https://soltuts.com/how-to-validate-a-variable-is-ip-address-in-php/) - In this post, This function checks whether a variable is IP or not. - [How to validate value is Float in Php?](https://soltuts.com/how-to-validate-value-is-float-in-php/) - In this post, This function checks whether a variable is of type float or not. - [How to validate is URL in Php?](https://soltuts.com/how-to-validate-is-url-in-php/) - In this post, This function checks whether a variable is of type URL or not. - [How to validate value is Boolean in Php?](https://soltuts.com/how-to-validate-value-is-boolean-in-php/) - In this post, This function checks whether a variable is of type boolean or not. - [How to create folder if it does not exists in Php?](https://soltuts.com/how-to-create-folder-if-it-does-not-exists-in-php/) - The function creates a directory specified by a pathname if it does not exists in PHP. - [How to use fopen() function in PHP?](https://soltuts.com/how-to-use-fopen-function-in-php/) - The fopen function in PHP is an inbuilt function which is used to open a file or an URL. - [How To Check If a String Ends with a Substring in PHP?](https://soltuts.com/how-to-check-if-a-string-ends-with-a-substring-in-php/) - In this tutorial, this function performs a case-sensitive search and checks if a string ends with a substring in PHP. - [How To Check If a String Starts with a Substring in PHP?](https://soltuts.com/how-to-check-if-a-string-starts-with-a-substring-in-php/) - In this tutorial, this function performs a case-sensitive search and checks if a string starts with a substring in PHP. - [How to check empty object in php?](https://soltuts.com/how-to-check-empty-object-in-php/) - In this post we will show you how to check empty object in PHP. - [How to get a substring between two strings in php?](https://soltuts.com/how-to-get-a-substring-between-two-strings-in-php/) - In this post we will show you how to get substring between two strings in PHP. - [How to extract all digits from a string in PHP?](https://soltuts.com/how-to-extract-all-digits-from-a-string-in-php/) - In this article, To get the list of all numbers in a String, use the regular expression ‘[0-9]+’ with re.findall() method. [0-9] represents a regular expression to match a single digit in the string. [0-9]+ represents continuous digit sequences of any length. - [How to read a ods file with Spout in PHP?](https://soltuts.com/how-to-read-a-ods-file-with-spout-in-php/) - Spout is a PHP library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way. - [How to read a csv file with Spout in PHP?](https://soltuts.com/how-to-read-a-csv-file-with-spout-in-php/) - Spout is a PHP library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way. - [How to read a xlsx file with Spout in PHP?](https://soltuts.com/how-to-read-a-xlsx-file-with-spout-in-php/) - Spout is a PHP library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way. - [How to read a uploaded xlsx file ($_FILE) with Spout in PHP?](https://soltuts.com/how-to-read-a-uploaded-xlsx-file-_file-with-spout-in-php/) - Spout is a PHP library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way. - [How to read a uploaded csv file ($_FILE) with Spout in PHP?](https://soltuts.com/how-to-read-a-uploaded-csv-file-_file-with-spout-in-php/) - Spout is a PHP library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way. - [How to read a uploaded ods file ($_FILE) with Spout in PHP?](https://soltuts.com/how-to-read-a-uploaded-ods-file-_file-with-spout-in-php/) - Spout is a PHP library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way. - [How to find the longest side of the box in php?](https://soltuts.com/how-to-find-the-longest-side-of-the-box-in-php/) - In this post, we helps you find the longest side of the box in php. - [How to find the shortest side of the box in php?](https://soltuts.com/how-to-find-the-shortest-side-of-the-box-in-php/) - In this post, we helps you find the shortest side of the box in php. - [How to convert centimeter or ,meter to inch in PHP?](https://soltuts.com/how-to-convert-centimeter-or-meter-to-inch-in-php/) - In this post, we use this calculation tool to convert quickly and easily between inches, centimeters and meter in PHP. - [How to convert inch or meter to centimeter in PHP?](https://soltuts.com/how-to-convert-inch-or-meter-to-centimeter-in-php/) - In this post, we use this calculation tool to convert quickly and easily between inches and centimeters , meter in PHP. - [How to convert kilograms or grams to pounds in php?](https://soltuts.com/how-to-convert-kilograms-or-grams-to-pounds-in-php/) - In this post, The function converter helps you convert grams, kilograms to pounds in PHP. - [How to convert pounds or grams to kilograms in php?](https://soltuts.com/how-to-convert-pounds-or-grams-to-kilograms-in-php/) - In this post, The function converter helps you convert grams, pounds to kilograms in PHP - [How to Encrypt a String in PHP?](https://soltuts.com/how-to-encrypt-a-string-in-php/) - In this post, we build-in function to encrypt large files. openssl_encrypt() can be used to encrypt strings in php. - [How to Decrypt a String in PHP?](https://soltuts.com/how-to-decrypt-a-string-in-php/) - In this post, we build-in function to decrypt large files. openssl_decrypt() can be used to encrypt strings in php. - [How to get current time in milliseconds in php?](https://soltuts.com/how-to-get-current-time-in-milliseconds-in-php/) - In this article, we helps you get current time in milliseconds in php. - [How to round to nearest number in php?](https://soltuts.com/how-to-round-to-nearest-number-in-php/) - In this post, this function will round the number to nearest in php. - [How to round one up numbers in php?](https://soltuts.com/how-to-round-one-up-numbers-in-php/) - In this post, this function will round the number to one a unit in php. - [How to insert a string into another string in PHP?](https://soltuts.com/how-to-insert-a-string-into-another-string-in-php/) - In this post, we help you how to insert a string into another string from specified position in PHP. - [How to check if string contains only a spaces in PHP?](https://soltuts.com/how-to-check-if-string-contains-only-a-space-in-php/) - In this post, we help you how to check if string contains only a spaces in PHP. - [How to remove values from an array in PHP?](https://soltuts.com/how-to-remove-values-from-an-array-in-php/) - In this post, we help you how to remove values from an array in PHP. - [How to remove CDATA tag in php?](https://soltuts.com/how-to-remove-cdata-tag-in-php/) - You can definitely remove the CDATA tag from input xml by using the str_replace function in PHP to remove the desired content from your xml. - [How to convert object or array to string in php?](https://soltuts.com/how-to-convert-object-or-array-to-string-in-php/) - In this post, By using the implode() function, we can convert all object or array elements into a string. This function returns the string. - [How to convert date string to mysql date in php?](https://soltuts.com/how-to-convert-date-string-to-mysql-date-in-php/) - In this tutorial, we will explain to you how you can convert date string to mysql date in PHP. - [How to convert mysql date to string in php?](https://soltuts.com/how-to-convert-mysql-date-to-string-in-php/) - In this tutorial, we will explain to you how you can convert mysql date to string in PHP. - [How to compare two dates from MYSQL in php?](https://soltuts.com/how-to-compare-two-dates-from-mysql-in-php/) - In this tutorial, we will explain to you how you can compare two dates from MYSQL in PHP. - [How to check day of the week in PHP?](https://soltuts.com/how-to-check-day-of-the-week-in-php/) - In this tutorial, we are going to see how to check day of the week in PHP. - [How to check format of date in php?](https://soltuts.com/how-to-check-format-of-date-in-php/) - In this tutorial, we are going to see how to check Date format in PHP. - [How to get day name from date in php?](https://soltuts.com/how-to-get-day-name-from-date-in-php/) - This is a short guide on how to get full day name from date in php. i would like to show you php date get full day name. - [How to calculate hours between two dates in php?](https://soltuts.com/how-to-calculate-hours-between-two-dates-in-php/) - In this tutorial, we are using PHP date time functions to calculate the hour difference between two dates. - [How to get a day of the week from date in php?](https://soltuts.com/how-to-get-a-day-of-the-week-from-date-in-php/) - This is a short guide on how to get the day of the week from a given date string in PHP. - [How to calculate the difference between two dates in php?](https://soltuts.com/how-to-calculate-the-difference-between-two-dates-in-php/) - The date_\diff() is an inbuilt function in PHP which is used to calculate the difference between two dates. - [How to change format time from hh:mm:ss to hhmmss in php?](https://soltuts.com/how-to-change-format-time-from-hhmmss-to-hhmmss-in-php/) - In this tutorial, we show you how you can convert format time from hh:mm:ss to hhmmss in php. - [How to convert float to date time in php?](https://soltuts.com/how-to-convert-float-to-date-time-in-php/) - In this tutorial, we show you how you can convert float to date time in php. - [How to convert date to different format in php?](https://soltuts.com/how-to-convert-date-to-different-format-in-php/) - To convert the datetime format PHP provides strtotime() and date() function. We change the date format from one format to another. - [How to subtract some days in php?](https://soltuts.com/how-to-subtract-some-days-in-php/) - The date_\sub() is an inbuilt function in PHP which is used to subtract some days, months, years, hours, minutes, and seconds from given date. The function returns a DateTime object on success and returns FALSE on failure. - [How to add days into date in php?](https://soltuts.com/how-to-add-days-into-date-in-php/) - Here we’ll provide the simplest way to add days to date using PHP. In PHP, using date_\add() function you can easily increase date. - [How to convert PT time to time format in php?](https://soltuts.com/how-to-convert-pt-time-to-time-format-in-php/) - This post convert PT time to time format in php. - [How to convert 24 hour format to 12 hour format time in php?](https://soltuts.com/how-to-convert-24-hour-format-to-12-hour-format-time-in-php/) - This post converting 24 hour format to 12 hours format time. - [How to convert date to datetime in PHP?](https://soltuts.com/how-to-convert-date-to-datetime-in-php/) - This post converting the Date format to DateTime format with beginning and end of that day. - [How to convert to end of that day in php?](https://soltuts.com/how-to-convert-to-end-of-that-day-in-php/) - This post converting the date to end of that day in php. - [How to get xmldate from MySql date in php?](https://soltuts.com/how-to-get-xmldate-from-mysql-date-in-php/) - This post converting the MySql date format to xml date time format in php. - [How to detect number from string in php?](https://soltuts.com/how-to-detect-number-from-string-in-php/) - This post, we helps you check if a string contains numeric characters. - [How to remove whilespace from string in php?](https://soltuts.com/how-to-remove-whilespace-from-string-in-php/) - To remove multiple occurences of whitespace characters in a string an convert them all into single spaces in php. - [How to escape special characters in php?](https://soltuts.com/how-to-escape-special-characters-in-php/) - The function converts special characters into HTML entities, (html will no longer work so you can echo it outside). - [How to convert to capital string in php?](https://soltuts.com/how-to-convert-to-capital-string-in-php/) - This post, we helps you convert string to capital string. - [How to remove all spaces from string in php?](https://soltuts.com/how-to-remove-all-spaces-from-string-in-php/) - In this post, use the PHP pregReplace() function to strip or remove all whitespaces inside a string. - [How to convert atom date to date in PHP?](https://soltuts.com/how-to-convert-atom-date-to-date-in-php/) - This post converting the Atom Date format to Date format with any format in php. - [How to add hours and minutes in PHP?](https://soltuts.com/how-to-add-hours-and-minutes-in-php/) - Here we’ll provide the simplest way to add minutes, hours and seconds to time using PHP. In PHP, using date() and strtotime() function you can easily increase or decrease time. - [How to remove all non-numeric characters from a string in php?](https://soltuts.com/how-to-remove-all-non-numeric-characters-from-a-string-in-php/) - In this post, We can remove all non-\alphanumeric characters from the string with preg_\replace() function in PHP. - [How to convert camelCase to underscore in php?](https://soltuts.com/how-to-convert-camelcase-to-underscore-in-php/) - Use PHP to convert the camelCase string into an underscore-separated or other character separated. - [How to delete object's property in php?](https://soltuts.com/how-to-delete-objects-property-in-php/) - In this article, we show how to delete all properties of an object in PHP. - [How to get file extension in php?](https://soltuts.com/how-to-get-file-extension-in-php/) - This post, we helps you get file extension. - [How to convert string to date in php?](https://soltuts.com/how-to-convert-string-to-date-in-php/) - In this tutorial, we'll explore several ways to convert String into Date objects. - [How to sort array in PHP?](https://soltuts.com/how-to-sort-array-in-php/) - In this post, we show you 2 ways to sort arrays using strnatcmp() and strcmp() functions. - [How to convert pascal case decode in php?](https://soltuts.com/how-to-convert-pascal-case-decode-in-php/) - In this post, We will show you how to convert pascal case decode. - [How to get a random string in php?](https://soltuts.com/how-to-get-a-random-string-in-php/) - This tutorial includes several methods of generating a unique, random, alpha-numeric string with PHP. - [How to remove value from array in PHP?](https://soltuts.com/how-to-remove-value-from-array-in-php/) - In this post, the function will remove the element from an array by value, we can use the combination of array_search() and unset() functions in PHP. - [How to check a string contains substring in php?](https://soltuts.com/how-to-check-a-string-contains-substring-in-php/) - The function will check a string contains substring, the string to be checked may contain underscores. - [How to compare two array values in php?](https://soltuts.com/how-to-compare-two-array-values-in-php/) - In this tutorial, You can use array_\diff() function to compare an array to one or more other arrays. - [How to remove number from right string in php?](https://soltuts.com/how-to-remove-number-from-right-in-php/) - The function will remove numeric characters at the end of the string. - [How to remove numbers from left string in php?](https://soltuts.com/how-to-remove-numbers-from-left-in-php/) - The function returns a substring from the left to the position with the first numeric character. - [How to remove new line from string php?](https://soltuts.com/how-to-remove-new-line-from-string-php/) - Using The removeNewline() function and remove new lines from string and replace with one empty space. - [How to get substring after last separator in php?](https://soltuts.com/how-to-get-substring-after-last-separator-in-php/) - This function will return the last substring after trimming the string according to the separator passed in. ## Pages - [Tips, tricks and code snippets](https://soltuts.com/) - Solution Tutorials - [Contact](https://soltuts.com/contact/) - Contact Form Name Email Subject Your Message - [Blog - Masonry + Sidebar](https://soltuts.com/blog-masonry-sidebar/) - [Blog - Masonry](https://soltuts.com/blog-masonry/) - [Blog - Sidebar](https://soltuts.com/blog-sidebar/) ## Categories - [Uncategorized](https://soltuts.com/category/uncategorized/) - [PHP](https://soltuts.com/category/php/) - php tutorial, PHP Code Snippet - [CSS](https://soltuts.com/category/css/) - CSS tutorial posts - [JavaScript](https://soltuts.com/category/javascript/) ## Tags - [php](https://soltuts.com/tag/php/) - [php string](https://soltuts.com/tag/php-string/) - [substring](https://soltuts.com/tag/substring/) - [string](https://soltuts.com/tag/string/) - [contains number](https://soltuts.com/tag/contains-number/) - [array](https://soltuts.com/tag/array/) - [clean value array](https://soltuts.com/tag/clean-value-array/) - [clear object](https://soltuts.com/tag/clear-object/) - [remove object](https://soltuts.com/tag/remove-object/) - [object](https://soltuts.com/tag/object/) - [compare array](https://soltuts.com/tag/compare-array/) - [string to date](https://soltuts.com/tag/string-to-date/) - [date time](https://soltuts.com/tag/date-time/) - [convert camel case](https://soltuts.com/tag/convert-camel-case/) - [underscore](https://soltuts.com/tag/underscore/) - [convert](https://soltuts.com/tag/convert/) - [capital string](https://soltuts.com/tag/capital-string/) - [detect text](https://soltuts.com/tag/detect-text/) - [escape special chars](https://soltuts.com/tag/escape-special-chars/) - [escape](https://soltuts.com/tag/escape/) - [special chars](https://soltuts.com/tag/special-chars/) - [random string](https://soltuts.com/tag/random-string/) - [get substring](https://soltuts.com/tag/get-substring/) - [separator](https://soltuts.com/tag/separator/) - [get file extension](https://soltuts.com/tag/get-file-extension/) - [extension](https://soltuts.com/tag/extension/) - [space](https://soltuts.com/tag/space/) - [check one space](https://soltuts.com/tag/check-one-space/) - [pascal case](https://soltuts.com/tag/pascal-case/) - [decode](https://soltuts.com/tag/decode/) - [remove](https://soltuts.com/tag/remove/) - [white space](https://soltuts.com/tag/white-space/) - [array php](https://soltuts.com/tag/array-php/) - [remove CDATA](https://soltuts.com/tag/remove-cdata/) - [CDATA](https://soltuts.com/tag/cdata/) - [remove new line](https://soltuts.com/tag/remove-new-line/) - [new line](https://soltuts.com/tag/new-line/) - [non_numeric](https://soltuts.com/tag/non_numeric/) - [remove numbers](https://soltuts.com/tag/remove-numbers/) - [left string](https://soltuts.com/tag/left-string/) - [remove numeric](https://soltuts.com/tag/remove-numeric/) - [unnecessary](https://soltuts.com/tag/unnecessary/) - [sort array](https://soltuts.com/tag/sort-array/) - [usort](https://soltuts.com/tag/usort/) - [unset](https://soltuts.com/tag/unset/) - [value](https://soltuts.com/tag/value/) - [php xml](https://soltuts.com/tag/php-xml/) - [xml](https://soltuts.com/tag/xml/) - [cdata tag](https://soltuts.com/tag/cdata-tag/) - [add hours](https://soltuts.com/tag/add-hours/) - [minutes](https://soltuts.com/tag/minutes/) - [date](https://soltuts.com/tag/date/) - [atom date](https://soltuts.com/tag/atom-date/) - [mysql](https://soltuts.com/tag/mysql/) - [mysql date](https://soltuts.com/tag/mysql-date/) - [end of day](https://soltuts.com/tag/end-of-day/) - [24 hours](https://soltuts.com/tag/24-hours/) - [array to string](https://soltuts.com/tag/array-to-string/) - [string php](https://soltuts.com/tag/string-php/) - [PT time](https://soltuts.com/tag/pt-time/) - [time format](https://soltuts.com/tag/time-format/) - [add date](https://soltuts.com/tag/add-date/) - [sub date](https://soltuts.com/tag/sub-date/) - [format](https://soltuts.com/tag/format/) - [float](https://soltuts.com/tag/float/) - [get](https://soltuts.com/tag/get/) - [difference](https://soltuts.com/tag/difference/) - [day of week](https://soltuts.com/tag/day-of-week/) - [day name](https://soltuts.com/tag/day-name/) - [check](https://soltuts.com/tag/check/) - [compare](https://soltuts.com/tag/compare/) - [php date](https://soltuts.com/tag/php-date/) - [date format](https://soltuts.com/tag/date-format/) - [calculate hours](https://soltuts.com/tag/calculate-hours/) - [two date](https://soltuts.com/tag/two-date/) - [week](https://soltuts.com/tag/week/) - [two dates](https://soltuts.com/tag/two-dates/) - [change format](https://soltuts.com/tag/change-format/) - [hhmm](https://soltuts.com/tag/hhmm/) - [time](https://soltuts.com/tag/time/) - [subtract](https://soltuts.com/tag/subtract/) - [days](https://soltuts.com/tag/days/) - [12 hours](https://soltuts.com/tag/12-hours/) - [my sql date](https://soltuts.com/tag/my-sql-date/) - [whilespace](https://soltuts.com/tag/whilespace/) - [add time](https://soltuts.com/tag/add-time/) - [get string](https://soltuts.com/tag/get-string/) - [remove value](https://soltuts.com/tag/remove-value/) - [contains](https://soltuts.com/tag/contains/) - [right](https://soltuts.com/tag/right/) - [convert weight unit](https://soltuts.com/tag/convert-weight-unit/) - [weight unit](https://soltuts.com/tag/weight-unit/) - [round up](https://soltuts.com/tag/round-up/) - [round half up](https://soltuts.com/tag/round-half-up/) - [number](https://soltuts.com/tag/number/) - [round up number](https://soltuts.com/tag/round-up-number/) - [encrypt](https://soltuts.com/tag/encrypt/) - [decrypt](https://soltuts.com/tag/decrypt/) - [spout](https://soltuts.com/tag/spout/) - [read csv file](https://soltuts.com/tag/read-csv-file/) - [read xlsx file](https://soltuts.com/tag/read-xlsx-file/) - [upload xlsx file](https://soltuts.com/tag/upload-xlsx-file/) - [upload ods file](https://soltuts.com/tag/upload-ods-file/) - [pounds](https://soltuts.com/tag/pounds/) - [grams](https://soltuts.com/tag/grams/) - [meter](https://soltuts.com/tag/meter/) - [centimeter](https://soltuts.com/tag/centimeter/) - [get longest](https://soltuts.com/tag/get-longest/) - [find](https://soltuts.com/tag/find/) - [shortest side](https://soltuts.com/tag/shortest-side/) - [get longest side of the box](https://soltuts.com/tag/get-longest-side-of-the-box/) - [read file](https://soltuts.com/tag/read-file/) - [read ods file](https://soltuts.com/tag/read-ods-file/) - [check string](https://soltuts.com/tag/check-string/) - [ends with substring](https://soltuts.com/tag/ends-with-substring/) - [start with substring](https://soltuts.com/tag/start-with-substring/) - [extract all digits](https://soltuts.com/tag/extract-all-digits/) - [get curent time](https://soltuts.com/tag/get-curent-time/) - [milliseconds](https://soltuts.com/tag/milliseconds/) - [between two string](https://soltuts.com/tag/between-two-string/) - [check empty object](https://soltuts.com/tag/check-empty-object/) - [pounds to kg](https://soltuts.com/tag/pounds-to-kg/) - [ib to kg](https://soltuts.com/tag/ib-to-kg/) - [convert ib to kg](https://soltuts.com/tag/convert-ib-to-kg/) - [ibs to kg weight](https://soltuts.com/tag/ibs-to-kg-weight/) - [Pound to kg](https://soltuts.com/tag/pound-to-kg/) - [pounds to kilograms conversion](https://soltuts.com/tag/pounds-to-kilograms-conversion/) - [Convert lbs to kg](https://soltuts.com/tag/convert-lbs-to-kg/) - [kg to lbs](https://soltuts.com/tag/kg-to-lbs/) - [Kilogram to Pound Conversion](https://soltuts.com/tag/kilogram-to-pound-conversion/) - [Kilograms to Pounds](https://soltuts.com/tag/kilograms-to-pounds/) - [Weight converter kg to lbs](https://soltuts.com/tag/weight-converter-kg-to-lbs/) - [To convert kilograms to pounds](https://soltuts.com/tag/to-convert-kilograms-to-pounds/) - [Convert kg to lbs](https://soltuts.com/tag/convert-kg-to-lbs/) - [Inches to centimeters conversion](https://soltuts.com/tag/inches-to-centimeters-conversion/) - [Inch to Centimeter](https://soltuts.com/tag/inch-to-centimeter/) - [inches to cm](https://soltuts.com/tag/inches-to-cm/) - [cm to inch](https://soltuts.com/tag/cm-to-inch/) - [Centimeters to inches conversion](https://soltuts.com/tag/centimeters-to-inches-conversion/) - [CM to Inches converter](https://soltuts.com/tag/cm-to-inches-converter/) - [cm to inches](https://soltuts.com/tag/cm-to-inches/) - [convert cm to inches](https://soltuts.com/tag/convert-cm-to-inches/) - [smallest side of the box](https://soltuts.com/tag/smallest-side-of-the-box/) - [dimensions](https://soltuts.com/tag/dimensions/) - [LongestSide](https://soltuts.com/tag/longestside/) - [Longest Side](https://soltuts.com/tag/longest-side/) - [Spout php](https://soltuts.com/tag/spout-php/) - [read csv php](https://soltuts.com/tag/read-csv-php/) - [read xlsx php](https://soltuts.com/tag/read-xlsx-php/) - [read excel file](https://soltuts.com/tag/read-excel-file/) - [write csv php](https://soltuts.com/tag/write-csv-php/) - [write xlsx file](https://soltuts.com/tag/write-xlsx-file/) - [php wirte ods file](https://soltuts.com/tag/php-wirte-ods-file/) - [lib Spout](https://soltuts.com/tag/lib-spout/) - [Spout libs](https://soltuts.com/tag/spout-libs/) - [wirte excel file](https://soltuts.com/tag/wirte-excel-file/) - [php substring](https://soltuts.com/tag/php-substring/) - [php check string](https://soltuts.com/tag/php-check-string/) - [php check end of string](https://soltuts.com/tag/php-check-end-of-string/) - [extension file php](https://soltuts.com/tag/extension-file-php/) - [get extension file php](https://soltuts.com/tag/get-extension-file-php/) - [php substrings](https://soltuts.com/tag/php-substrings/) - [php object](https://soltuts.com/tag/php-object/) - [fopen](https://soltuts.com/tag/fopen/) - [fclose](https://soltuts.com/tag/fclose/) - [function](https://soltuts.com/tag/function/) - [file get content](https://soltuts.com/tag/file-get-content/) - [fread](https://soltuts.com/tag/fread/) - [fwrite](https://soltuts.com/tag/fwrite/) - [generates](https://soltuts.com/tag/generates/) - [unique id](https://soltuts.com/tag/unique-id/) - [create folder](https://soltuts.com/tag/create-folder/) - [exits](https://soltuts.com/tag/exits/) - [file_exists](https://soltuts.com/tag/file_exists/) - [mkdir](https://soltuts.com/tag/mkdir/) - [interger](https://soltuts.com/tag/interger/) - [filter_var](https://soltuts.com/tag/filter_var/) - [validate](https://soltuts.com/tag/validate/) - [FILTER_VALIDATE_INT](https://soltuts.com/tag/filter_validate_int/) - [FILTER_VALIDATE_FLOAT](https://soltuts.com/tag/filter_validate_float/) - [boolean](https://soltuts.com/tag/boolean/) - [type](https://soltuts.com/tag/type/) - [url](https://soltuts.com/tag/url/) - [validate url](https://soltuts.com/tag/validate-url/) - [phone number](https://soltuts.com/tag/phone-number/) - [preg_match](https://soltuts.com/tag/preg_match/) - [email](https://soltuts.com/tag/email/) - [check email](https://soltuts.com/tag/check-email/) - [ip](https://soltuts.com/tag/ip/) - [php fopen](https://soltuts.com/tag/php-fopen/) - [php read file](https://soltuts.com/tag/php-read-file/) - [php open file text](https://soltuts.com/tag/php-open-file-text/) - [php read text file](https://soltuts.com/tag/php-read-text-file/) - [php create folder](https://soltuts.com/tag/php-create-folder/) - [php folder](https://soltuts.com/tag/php-folder/) - [php mkdir](https://soltuts.com/tag/php-mkdir/) - [make dir php](https://soltuts.com/tag/make-dir-php/) - [php validate folat](https://soltuts.com/tag/php-validate-folat/) - [php filter_var](https://soltuts.com/tag/php-filter_var/) - [filter validate float](https://soltuts.com/tag/filter-validate-float/) - [php filter validate float](https://soltuts.com/tag/php-filter-validate-float/) - [php validate boolean](https://soltuts.com/tag/php-validate-boolean/) - [php boolean](https://soltuts.com/tag/php-boolean/) - [php url](https://soltuts.com/tag/php-url/) - [microtime](https://soltuts.com/tag/microtime/) - [php validate ip](https://soltuts.com/tag/php-validate-ip/) - [php filter validate ip](https://soltuts.com/tag/php-filter-validate-ip/) - [filter validate ip](https://soltuts.com/tag/filter-validate-ip/) - [php IP address](https://soltuts.com/tag/php-ip-address/) - [php filter validate email](https://soltuts.com/tag/php-filter-validate-email/) - [php filter validate](https://soltuts.com/tag/php-filter-validate/) - [validate email php](https://soltuts.com/tag/validate-email-php/) - [email address validator](https://soltuts.com/tag/email-address-validator/) - [php validate phone](https://soltuts.com/tag/php-validate-phone/) - [php preg_match](https://soltuts.com/tag/php-preg_match/) - [php validate int](https://soltuts.com/tag/php-validate-int/) - [php check int](https://soltuts.com/tag/php-check-int/) - [difference between define() and const](https://soltuts.com/tag/difference-between-define-and-const/) - [define](https://soltuts.com/tag/define/) - [conditional](https://soltuts.com/tag/conditional/) - [arrays](https://soltuts.com/tag/arrays/) - [case seensitive](https://soltuts.com/tag/case-seensitive/) - [utilized](https://soltuts.com/tag/utilized/) - [declare](https://soltuts.com/tag/declare/) - [curl](https://soltuts.com/tag/curl/) - [use curl](https://soltuts.com/tag/use-curl/) - [curl_init](https://soltuts.com/tag/curl_init/) - [curl_setopt](https://soltuts.com/tag/curl_setopt/) - [curl_close](https://soltuts.com/tag/curl_close/) - [Post Data](https://soltuts.com/tag/post-data/) - [Post JSON Data](https://soltuts.com/tag/post-json-data/) - [Upload Files](https://soltuts.com/tag/upload-files/) - [future date](https://soltuts.com/tag/future-date/) - [current date](https://soltuts.com/tag/current-date/) - [check date is future date](https://soltuts.com/tag/check-date-is-future-date/) - [get email](https://soltuts.com/tag/get-email/) - [Extract All Email](https://soltuts.com/tag/extract-all-email/) - [email address](https://soltuts.com/tag/email-address/) - [pattern](https://soltuts.com/tag/pattern/) - [matches](https://soltuts.com/tag/matches/) - [get all date between two dates](https://soltuts.com/tag/get-all-date-between-two-dates/) - [rang date](https://soltuts.com/tag/rang-date/) - [get full month name](https://soltuts.com/tag/get-full-month-name/) - [month name](https://soltuts.com/tag/month-name/) - [short month name](https://soltuts.com/tag/short-month-name/) - [path](https://soltuts.com/tag/path/) - [file name](https://soltuts.com/tag/file-name/) - [from](https://soltuts.com/tag/from/) - [caculate](https://soltuts.com/tag/caculate/) - [date of birth](https://soltuts.com/tag/date-of-birth/) - [rename](https://soltuts.com/tag/rename/) - [folder](https://soltuts.com/tag/folder/) - [change file name](https://soltuts.com/tag/change-file-name/) - [replace](https://soltuts.com/tag/replace/) - [move file](https://soltuts.com/tag/move-file/) - [copy](https://soltuts.com/tag/copy/) - [convert urls](https://soltuts.com/tag/convert-urls/) - [preg_replace](https://soltuts.com/tag/preg_replace/) - [make link](https://soltuts.com/tag/make-link/) - [find url](https://soltuts.com/tag/find-url/) - [check date between two date](https://soltuts.com/tag/check-date-between-two-date/) - [between two dates php](https://soltuts.com/tag/between-two-dates-php/) - [php find url](https://soltuts.com/tag/php-find-url/) - [php copy file](https://soltuts.com/tag/php-copy-file/) - [php move file](https://soltuts.com/tag/php-move-file/) - [php file](https://soltuts.com/tag/php-file/) - [php files](https://soltuts.com/tag/php-files/) - [php change file name](https://soltuts.com/tag/php-change-file-name/) - [php rename](https://soltuts.com/tag/php-rename/) - [month](https://soltuts.com/tag/month/) - [countdown](https://soltuts.com/tag/countdown/) - [creating](https://soltuts.com/tag/creating/) - [dynamic](https://soltuts.com/tag/dynamic/) - [get date](https://soltuts.com/tag/get-date/) - [yesterday](https://soltuts.com/tag/yesterday/) - [yesterday date](https://soltuts.com/tag/yesterday-date/) - [count values in array](https://soltuts.com/tag/count-values-in-array/) - [combine](https://soltuts.com/tag/combine/) - [array_combine](https://soltuts.com/tag/array_combine/) - [array_column](https://soltuts.com/tag/array_column/) - [get values](https://soltuts.com/tag/get-values/) - [column name](https://soltuts.com/tag/column-name/) - [split](https://soltuts.com/tag/split/) - [array_chunk](https://soltuts.com/tag/array_chunk/) - [split array](https://soltuts.com/tag/split-array/) - [convert array to json](https://soltuts.com/tag/convert-array-to-json/) - [json](https://soltuts.com/tag/json/) - [json_decode](https://soltuts.com/tag/json_decode/) - [convert json to array](https://soltuts.com/tag/convert-json-to-array/) - [json_encode](https://soltuts.com/tag/json_encode/) - [php json](https://soltuts.com/tag/php-json/) - [convert json](https://soltuts.com/tag/convert-json/) - [convert json to array php](https://soltuts.com/tag/convert-json-to-array-php/) - [array to json](https://soltuts.com/tag/array-to-json/) - [php array](https://soltuts.com/tag/php-array/) - [convert json php](https://soltuts.com/tag/convert-json-php/) - [php array_chunk](https://soltuts.com/tag/php-array_chunk/) - [array into chunks](https://soltuts.com/tag/array-into-chunks/) - [php array column](https://soltuts.com/tag/php-array-column/) - [php combine array](https://soltuts.com/tag/php-combine-array/) - [php combine two array](https://soltuts.com/tag/php-combine-two-array/) - [count array](https://soltuts.com/tag/count-array/) - [php array count values](https://soltuts.com/tag/php-array-count-values/) - [php date yesterday](https://soltuts.com/tag/php-date-yesterday/) - [php get yesterday date](https://soltuts.com/tag/php-get-yesterday-date/) - [yesterday date php](https://soltuts.com/tag/yesterday-date-php/) - [date of yesterday](https://soltuts.com/tag/date-of-yesterday/) - [countdown php](https://soltuts.com/tag/countdown-php/) - [contdown example](https://soltuts.com/tag/contdown-example/) - [first date of month](https://soltuts.com/tag/first-date-of-month/) - [get the first day php](https://soltuts.com/tag/get-the-first-day-php/) - [find the first date](https://soltuts.com/tag/find-the-first-date/) - [calculate the current age](https://soltuts.com/tag/calculate-the-current-age/) - [php calculate age](https://soltuts.com/tag/php-calculate-age/) - [calculate age php](https://soltuts.com/tag/calculate-age-php/) - [merge](https://soltuts.com/tag/merge/) - [array merge](https://soltuts.com/tag/array-merge/) - [add month](https://soltuts.com/tag/add-month/) - [array_change_key_case](https://soltuts.com/tag/array_change_key_case/) - [change key case](https://soltuts.com/tag/change-key-case/) - [new self](https://soltuts.com/tag/new-self/) - [new static](https://soltuts.com/tag/new-static/) - [between](https://soltuts.com/tag/between/) - [unique array](https://soltuts.com/tag/unique-array/) - [duplicates](https://soltuts.com/tag/duplicates/) - [multi array](https://soltuts.com/tag/multi-array/) - [php multi array](https://soltuts.com/tag/php-multi-array/) - [php remove multi array](https://soltuts.com/tag/php-remove-multi-array/) - [php array_change_key_case](https://soltuts.com/tag/php-array_change_key_case/) - [php change key array](https://soltuts.com/tag/php-change-key-array/) - [php add month](https://soltuts.com/tag/php-add-month/) - [php moth](https://soltuts.com/tag/php-moth/) - [add month to date](https://soltuts.com/tag/add-month-to-date/) - [merge array php](https://soltuts.com/tag/merge-array-php/) - [php get file name](https://soltuts.com/tag/php-get-file-name/) - [php get extension](https://soltuts.com/tag/php-get-extension/) - [get extension url](https://soltuts.com/tag/get-extension-url/) - [extention url php](https://soltuts.com/tag/extention-url-php/) - [php get month](https://soltuts.com/tag/php-get-month/) - [php get month name](https://soltuts.com/tag/php-get-month-name/) - [php month name](https://soltuts.com/tag/php-month-name/) - [php between date](https://soltuts.com/tag/php-between-date/) - [null values](https://soltuts.com/tag/null-values/) - [remove null values](https://soltuts.com/tag/remove-null-values/) - [multidimensional](https://soltuts.com/tag/multidimensional/) - [php remove null values](https://soltuts.com/tag/php-remove-null-values/) - [multidimensional array php](https://soltuts.com/tag/multidimensional-array-php/) - [null array phg](https://soltuts.com/tag/null-array-phg/) - [null values php](https://soltuts.com/tag/null-values-php/) - [php self](https://soltuts.com/tag/php-self/) - [php new static](https://soltuts.com/tag/php-new-static/) - [new self vs new static](https://soltuts.com/tag/new-self-vs-new-static/) - [new self vs new static php](https://soltuts.com/tag/new-self-vs-new-static-php/) - [get month php](https://soltuts.com/tag/get-month-php/) - [month name php](https://soltuts.com/tag/month-name-php/) - [email php](https://soltuts.com/tag/email-php/) - [email address php](https://soltuts.com/tag/email-address-php/) - [check date php](https://soltuts.com/tag/check-date-php/) - [php curl](https://soltuts.com/tag/php-curl/) - [curl in php](https://soltuts.com/tag/curl-in-php/) - [curl php example](https://soltuts.com/tag/curl-php-example/) - [curl call api](https://soltuts.com/tag/curl-call-api/) - [php const](https://soltuts.com/tag/php-const/) - [define vs const](https://soltuts.com/tag/define-vs-const/) - [const vs define php](https://soltuts.com/tag/const-vs-define-php/) - [define php example](https://soltuts.com/tag/define-php-example/) - [round php](https://soltuts.com/tag/round-php/) - [round half up php](https://soltuts.com/tag/round-half-up-php/) - [number php](https://soltuts.com/tag/number-php/) - [get values array](https://soltuts.com/tag/get-values-array/) - [numeric index](https://soltuts.com/tag/numeric-index/) - [array_values()](https://soltuts.com/tag/array_values/) - [php number](https://soltuts.com/tag/php-number/) - [hide phone number](https://soltuts.com/tag/hide-phone-number/) - [substr](https://soltuts.com/tag/substr/) - [html tag](https://soltuts.com/tag/html-tag/) - [strip_tags](https://soltuts.com/tag/strip_tags/) - [HTML](https://soltuts.com/tag/html/) - [key](https://soltuts.com/tag/key/) - [associative array](https://soltuts.com/tag/associative-array/) - [remove a key](https://soltuts.com/tag/remove-a-key/) - [remove a key and values](https://soltuts.com/tag/remove-a-key-and-values/) - [Indexed array](https://soltuts.com/tag/indexed-array/) - [array_map()](https://soltuts.com/tag/array_map/) - [array_reduce()](https://soltuts.com/tag/array_reduce/) - [use](https://soltuts.com/tag/use/) - [isset()](https://soltuts.com/tag/isset/) - [array_key_exists()](https://soltuts.com/tag/array_key_exists/) - [array_merge](https://soltuts.com/tag/array_merge/) - [phparray_merge](https://soltuts.com/tag/phparray_merge/) - [php array merge](https://soltuts.com/tag/php-array-merge/) - [array merge vs combine](https://soltuts.com/tag/array-merge-vs-combine/) - [php isset](https://soltuts.com/tag/php-isset/) - [php array_key_exists](https://soltuts.com/tag/php-array_key_exists/) - [isset vs array_key_exists](https://soltuts.com/tag/isset-vs-array_key_exists/) - [php array_walk](https://soltuts.com/tag/php-array_walk/) - [php array walk](https://soltuts.com/tag/php-array-walk/) - [php array_reduce](https://soltuts.com/tag/php-array_reduce/) - [php array reduce](https://soltuts.com/tag/php-array-reduce/) - [php array_map](https://soltuts.com/tag/php-array_map/) - [php special character](https://soltuts.com/tag/php-special-character/) - [php remove string](https://soltuts.com/tag/php-remove-string/) - [php character](https://soltuts.com/tag/php-character/) - [special character php](https://soltuts.com/tag/special-character-php/) - [php index array](https://soltuts.com/tag/php-index-array/) - [php collection](https://soltuts.com/tag/php-collection/) - [php key array](https://soltuts.com/tag/php-key-array/) - [php value array](https://soltuts.com/tag/php-value-array/) - [php numeric](https://soltuts.com/tag/php-numeric/) - [php index](https://soltuts.com/tag/php-index/) - [php keys](https://soltuts.com/tag/php-keys/) - [php hide number](https://soltuts.com/tag/php-hide-number/) - [php partially](https://soltuts.com/tag/php-partially/) - [hide phone number php](https://soltuts.com/tag/hide-phone-number-php/) - [php get array](https://soltuts.com/tag/php-get-array/) - [php remove tags](https://soltuts.com/tag/php-remove-tags/) - [error](https://soltuts.com/tag/error/) - [MySQLi prepared statements](https://soltuts.com/tag/mysqli-prepared-statements/) - [reporting](https://soltuts.com/tag/reporting/) - [MySQLi](https://soltuts.com/tag/mysqli/) - [range()](https://soltuts.com/tag/range/) - [used](https://soltuts.com/tag/used/) - [php tring](https://soltuts.com/tag/php-tring/) - [match](https://soltuts.com/tag/match/) - [match the first and last word](https://soltuts.com/tag/match-the-first-and-last-word/) - [variable](https://soltuts.com/tag/variable/) - [php word](https://soltuts.com/tag/php-word/) - [last word](https://soltuts.com/tag/last-word/) - [check string php](https://soltuts.com/tag/check-string-php/) - [pass PHP Object to Javascript](https://soltuts.com/tag/pass-php-object-to-javascript/) - [encode](https://soltuts.com/tag/encode/) - [load file](https://soltuts.com/tag/load-file/) - [load a PHP file into a variable](https://soltuts.com/tag/load-a-php-file-into-a-variable/) - [include](https://soltuts.com/tag/include/) - [load php file](https://soltuts.com/tag/load-php-file/) - [php range](https://soltuts.com/tag/php-range/) - [php to object js](https://soltuts.com/tag/php-to-object-js/) - [convert object php to javascript](https://soltuts.com/tag/convert-object-php-to-javascript/) - [read a file](https://soltuts.com/tag/read-a-file/) - [file_get_contents](https://soltuts.com/tag/file_get_contents/) - [evaluates](https://soltuts.com/tag/evaluates/) - [get the function name](https://soltuts.com/tag/get-the-function-name/) - [__FUNCTION__](https://soltuts.com/tag/__function__/) - [alert message box](https://soltuts.com/tag/alert-message-box/) - [pop an alert message box](https://soltuts.com/tag/pop-an-alert-message-box/) - [message](https://soltuts.com/tag/message/) - [pop up](https://soltuts.com/tag/pop-up-2/) - [alert](https://soltuts.com/tag/alert/) - [display error](https://soltuts.com/tag/display-error/) - [alert box](https://soltuts.com/tag/alert-box/) - [javascript](https://soltuts.com/tag/javascript/) - [js textContent](https://soltuts.com/tag/js-textcontent/) - [convert XML data into JSON format](https://soltuts.com/tag/convert-xml-data-into-json-format/) - [simplexml_load_string()](https://soltuts.com/tag/simplexml_load_string/) - [json_encode()](https://soltuts.com/tag/json_encode-2/) - [convert JSON file](https://soltuts.com/tag/convert-json-file/) - [CSV file](https://soltuts.com/tag/csv-file/) - [fputcsv](https://soltuts.com/tag/fputcsv/) - [css](https://soltuts.com/tag/css/) - [create a 3D text effect](https://soltuts.com/tag/create-a-3d-text-effect/) - [3D](https://soltuts.com/tag/3d/) - [effect](https://soltuts.com/tag/effect/) - [double layered](https://soltuts.com/tag/double-layered/) - [double layered text effect](https://soltuts.com/tag/double-layered-text-effect/) - [Liquid Filling Effect](https://soltuts.com/tag/liquid-filling-effect/) - [Text](https://soltuts.com/tag/text/) - [click](https://soltuts.com/tag/click/) - [jQuery](https://soltuts.com/tag/jquery/) - [element](https://soltuts.com/tag/element/) - [disable](https://soltuts.com/tag/disable/) - [right click](https://soltuts.com/tag/right-click/) - [bind()](https://soltuts.com/tag/bind/) - [option](https://soltuts.com/tag/option/) - [jquery bind](https://soltuts.com/tag/jquery-bind/) - [jquery width](https://soltuts.com/tag/jquery-width/) - [jquery height](https://soltuts.com/tag/jquery-height/) - [keyframes](https://soltuts.com/tag/keyframes/) - [css keyframes](https://soltuts.com/tag/css-keyframes/) - [css @keyframes](https://soltuts.com/tag/css-keyframes-2/) - [disable nested checkboxes](https://soltuts.com/tag/disable-nested-checkboxes/) - [enable](https://soltuts.com/tag/enable/) - [bind](https://soltuts.com/tag/bind-2/) - [content](https://soltuts.com/tag/content/) - [replace the content](https://soltuts.com/tag/replace-the-content/) - [text()](https://soltuts.com/tag/text-2/) - [set content](https://soltuts.com/tag/set-content/) - [textarea](https://soltuts.com/tag/textarea/) - [width](https://soltuts.com/tag/width/) - [get the width](https://soltuts.com/tag/get-the-width/) - [remove element](https://soltuts.com/tag/remove-element/) - [php mysql](https://soltuts.com/tag/php-mysql/) - [php mysqli](https://soltuts.com/tag/php-mysqli/) - [php load file](https://soltuts.com/tag/php-load-file/) - [eval example](https://soltuts.com/tag/eval-example/) - [clone an element](https://soltuts.com/tag/clone-an-element/) - [clone()](https://soltuts.com/tag/clone/) - [count](https://soltuts.com/tag/count/) - [mb_substr_count()](https://soltuts.com/tag/mb_substr_count/) - [position](https://soltuts.com/tag/position/) - [position of the first occurrence](https://soltuts.com/tag/position-of-the-first-occurrence/) - [find the position](https://soltuts.com/tag/find-the-position/) - [find the last occurrence](https://soltuts.com/tag/find-the-last-occurrence/) - [iconv_strrpos()](https://soltuts.com/tag/iconv_strrpos/) - [xml to json](https://soltuts.com/tag/xml-to-json/) - [php csv](https://soltuts.com/tag/php-csv/) - [json to csv](https://soltuts.com/tag/json-to-csv/) - [json vs xml](https://soltuts.com/tag/json-vs-xml/) - [whitespace](https://soltuts.com/tag/whitespace/) - [check string has no whitespace](https://soltuts.com/tag/check-string-has-no-whitespace/) - [3d text css](https://soltuts.com/tag/3d-text-css/) - [css tutorials](https://soltuts.com/tag/css-tutorials/) - [check box jquery](https://soltuts.com/tag/check-box-jquery/) - [textarea jquery](https://soltuts.com/tag/textarea-jquery/) - [style](https://soltuts.com/tag/style/) - [box](https://soltuts.com/tag/box/) - [design](https://soltuts.com/tag/design/) - [div](https://soltuts.com/tag/div/) - [copy the content](https://soltuts.com/tag/copy-the-content/) - [iconv_strrpos php](https://soltuts.com/tag/iconv_strrpos-php/) - [php posittion](https://soltuts.com/tag/php-posittion/) - [iconv php](https://soltuts.com/tag/iconv-php/) - [php count](https://soltuts.com/tag/php-count/) - [php preg match](https://soltuts.com/tag/php-preg-match/) - [jquery clone](https://soltuts.com/tag/jquery-clone/) - [jqurey](https://soltuts.com/tag/jqurey/) - [change input box](https://soltuts.com/tag/change-input-box/) - [border](https://soltuts.com/tag/border/) - [alert box css](https://soltuts.com/tag/alert-box-css/) - [jquery div](https://soltuts.com/tag/jquery-div/)