This is a simple way to get a subset of associative array elements using an array of keys; basically you extract out the elements you want from a bigger array by listing the keys you need. Weiterlesen „Find subset of associative array in PHP“
Schlagwort: php
Convert Large Integer to Hexadecimal without PHP Math extension
PHP has a couple of functions to convert integers to hexadecimal, dechex() and base_convert(). However, both functions lose precision on large integers.
Weiterlesen „Convert Large Integer to Hexadecimal without PHP Math extension“
Determine if a row has recently been updated using MySQL
This is a fairly common case I think. You have a table that has a datetime field that gets updated when a row is updated – you need to determine if a row has been updated recently.
Weiterlesen „Determine if a row has recently been updated using MySQL“
Loop through dates with strtotime() function
This simple method allows you to start at a date and iterate by either days or months until you reach the end date using my favourite PHP function, strtotime().
Weiterlesen „Loop through dates with strtotime() function“
Php Unserialize string after non UTF8 characters stripped out
This may be a pretty rare problem but I’ll post it regardless.
Weiterlesen „Php Unserialize string after non UTF8 characters stripped out“
Get last line of file in PHP
Here is a simple way to get the last line of a file without reading the entire file into memory.
Weiterlesen „Get last line of file in PHP“
How to debug your WordPress plugin
If you are developing a plugin on WordPress, you will need to debug your code as you go.
To enable debugging, go to your wp-config.php file.
Find the line…
[source language=“php“]define(‚WP_DEBUG‘, false);[/source]
Replace the line above with the following…
[source language=“php“]
// Turns WordPress debugging on
define(‚WP_DEBUG‘, true);
// Tells WordPress to log everything to the /wp-content/debug.log file
define(‚WP_DEBUG_LOG‘, true);
// Doesn’t force the PHP ‚display_errors‘ variable to be on
define(‚WP_DEBUG_DISPLAY‘, false);
// Hides errors from being displayed on-screen
@ini_set(‚display_errors‘, 0);
[/source]
Now you all warnings and errors will show up in the /wp-content/debug.log file, including WordPress warnings of deprecated functions.
You can write directly to this log from your plugin using the error_log() function.
Typically…
[source language=“php“]
//output some debug string
error_log( ‚this works yo‘ );
//output some array/object
error_log( print_r( $some_obj_or_array, 1 ) );
[/source]
Kudos to this post. It has some good plugin development tips, including how to enable debugging on WordPress.
WP Plugins: How to remove a Filter
Do not use remove_filter(). It is possible it will break other hooks which can have unintended consequences. This post gives a really good alternative approach using static variables.
Search Associative Array with Wildcard in PHP
Here are a pair of functions that will allow you to search an associative array for either a key or a value, using a string with a wildcard (*).
Weiterlesen „Search Associative Array with Wildcard in PHP“
Parse Print_r output and convert into CSV
These days I seem to looking a lot a print_r output. For the uninitiated, print_r is a handy PHP function to allow you to print the contents of an array in a neat, readable format. Weiterlesen „Parse Print_r output and convert into CSV“
