wincache_unlock

(PECL wincache >= 1.1.0) Releases an exclusive lock on a given key bool wincache_unlock ( string $key ) Releases an exclusive lock that was obtained on a given key by using wincache_lock(). If any other process was blocked waiting for the lock on this key, that process will be able to obtain the lock. Parameters: key Name of the key in the cache to release the lock o

xhprof_disable

(PECL xhprof >= 0.9.0) Stops xhprof profiler array xhprof_disable ( void ) Stops the profiler, and returns xhprof data from the run. Returns: An array of xhprof data, from the run. Examples: xhprof_disable() example <?php xhprof_enable(); $foo = strlen("foo bar"); $xhprof_data = xhprof_disable(); print_r($xhprof_

xhprof_enable

(PECL xhprof >= 0.9.0) Start xhprof profiler void xhprof_enable ([ int $flags = 0 [, array $options ]] ) Start xhprof profiling. Parameters: flags Optional flags to add additional information to the profiling. See the XHprof constants for further information about these flags, e.g., XHPROF_FLAGS_MEMORY to enable memory profiling. options

xhprof_sample_disable

(PECL xhprof >= 0.9.0) Stops xhprof sample profiler array xhprof_sample_disable ( void ) Stops the sample mode xhprof profiler, and Returns: An array of xhprof sample data, from the run. Examples: xhprof_sample_disable() example <?php xhprof_sample_enable(); for ($i = 0; $i <= 10000; $i++) {     $a = strlen($i);

xhprof_sample_enable

(PECL xhprof >= 0.9.0) Start XHProf profiling in sampling mode void xhprof_sample_enable ( void ) Starts profiling in sample mode, which is a lighter weight version of xhprof_enable(). The sampling interval is 0.1 seconds, and samples record the full function call stack. The main use case is when lower overhead is required when doing performance monitoring and diagnostics. Returns: NULL

id3_get_frame_long_name

(PECL id3 >= 0.2) Get the long name of an ID3v2 frame string id3_get_frame_long_name ( string $frameId ) id3_get_frame_long_name() returns the long name for an ID3v2 frame. Parameters: frameId An ID3v2 frame Returns: Returns the frame long name or FALSE on errors. Examples: id3_get

id3_get_frame_short_name

(PECL id3 >= 0.2) Get the short name of an ID3v2 frame string id3_get_frame_short_name ( string $frameId ) id3_get_frame_short_name() returns the short name for an ID3v2 frame. Parameters: frameId An ID3v2 frame Returns: Returns the frame short name or FALSE on errors. The values returned by id3_get_frame_short_name() are used in the array r

id3_get_genre_id

(PECL id3 >= 0.1) Get the id for a genre int id3_get_genre_id ( string $genre ) id3_get_genre_id() returns the id for a genre. Parameters: genre Genre name as string. Returns: The genre id or FALSE on errors. Examples: id3_get_genre_id() example <?php $id = id3_get

id3_get_genre_list

(PECL id3 >= 0.1) Get all possible genre values array id3_get_genre_list ( void ) id3_get_genre_list() returns an array containing all possible genres that may be stored in an ID3 tag. This list has been created by Eric Kemp and later extended by WinAmp. This function is useful to provide you users a list of genres from which they may choose one. When updating the ID3 tag you will always have to specify the genre as an

id3_get_genre_name

(PECL id3 >= 0.1) Get the name for a genre id string id3_get_genre_name ( int $genre_id ) id3_get_genre_name() returns the name for a genre id. Parameters: genre_id An integer ranging from 0 to 147 Returns: Returns the name as a string. Examples: id3_get_genre_name() example