Snippets

Clear the browser cache of CSS or JavaScript Using PHP

Other than caching every hour, or every week, you may cache according to file data. [crayon-68b6be3ac9ae9561049230/] or use file modification…

7 years ago

Current Site URL – Codeigniter

To get host url of current server simply replace application\config\config.php [crayon-68b6be3aca841560630571/] with [crayon-68b6be3aca849166930257/]  

7 years ago

PHP: fopen error handling

You should first test the existence of a file by file_exists(). [crayon-68b6be3acaaea943828864/] or simple solution without exceptions: [crayon-68b6be3acaaf1623492341/]  

7 years ago

Random String PHP

[crayon-68b6be3acad50479116305/] Output the random string with the call below: [crayon-68b6be3acad57666131719/]  

7 years ago

PHP function to make slug (URL string)

Note: from WordPress Use it like this: [crayon-68b6be3acaf2a429735466/] Code: [crayon-68b6be3acaf2f035824259/]  

7 years ago

Include all files with in the folder

[crayon-68b6be3acb1b1299846064/]  

7 years ago

How can I remove 3 characters at the end of a string in php?

[crayon-68b6be3acb2c9944849461/] or [crayon-68b6be3acb2cd849796418/]  

7 years ago

Print all value of an array – Smarty

[crayon-68b6be3acb4ac798071415/]

7 years ago

Receive JSON POST with PHP

[crayon-68b6be3acb6e5649368286/] instead of [crayon-68b6be3acb6eb541965593/] It will give you POST data as is. You will be able to decode it using…

7 years ago

Adding divs to a foreach loop every 4 times

The output look like: [crayon-68b6be3acbb8d960546741/]     [crayon-68b6be3acbb97984716373/]

8 years ago