Array with range of numbers at random order: $numbers = range(1, 20); shuffle($numbers); Wrapped function: function Uni…
I have a blog system where user enter title and from it i make url here is the function to create url function create…
Use cURL . This function is an alternative to file_get_contents . function url_get_contents ( $Url ) { if …
<?php $current_month = date("n"); $month = (isset($_GET['m'])) ? $_GET['m'] : date("…
php recursive parent child array I'm looking to write a function that takes an array of pages/categories (from a…
function number_to_words ($x){ $nwords = array("", "one", "two", "three", &qu…
Getting a file extensions from a PHP string is an important task on validating a file for a upload. For example if yo…
PHP Functions function SafeURL($string){ $string = strtolower($string); // Makes everything lowercase (just loo…