Adding WP_GET_THEME() function will let you show data from your theme information like file, name, author, description .... easily and quic...
HomePosts filed under PHP Snippet
Showing posts with label PHP Snippet. Show all posts
Showing posts with label PHP Snippet. Show all posts
Friday, July 17, 2015
Wednesday, April 29, 2015
Convert from Hexadecimal to RGB - PHP Snippet
✔
FreeScriptHost
April 29, 2015
Simple php function that returns rgb color format from hexadecimal color code. function Hex2RGB($color){ $color = str_replace('#...
Function to compare similar words - PHP Snippet
✔
FreeScriptHost
April 29, 2015
Simple exemple shows how to use the similar_text() function to compare similar words. It returns how similar the words are. $word2compare = ...
Get page time load - PHP Snippet
✔
FreeScriptHost
April 29, 2015
Simple php function that find and return page load time. function loadTime(){ $start = time(); // put a long operation in here sle...
How to get full database size - PHP Snippet
✔
FreeScriptHost
April 29, 2015
Simple php function that return the total size of a MySQL database in KB/MB or GB... PHP: function CalcFullDatabaseSize($database, $db) { ...
How to generates a random readable password - PHP Snippet
✔
FreeScriptHost
April 29, 2015
Simple php function that generates a random readable password by combining words from a wordlist array also you can adjust the password leng...
Tuesday, April 14, 2015
Array of non-european countries - PHP Snippet
✔
FreeScriptHost
April 14, 2015
Array variable of non-european countries as taken from EU website on 18 march 2015 $noneucountries = ("AFGHANISTAN", "ALBANIA...