is_lighttpd_before_150 [ WordPress Function ]
is_lighttpd_before_150 ( No parameters )
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: is_allowed_http_origin
Is the server running earlier than 1.5.0 version of lighttpd?
Source
<?php
function is_lighttpd_before_150() {
$server_parts = explode( '/', isset( $_SERVER['SERVER_SOFTWARE'] )? $_SERVER['SERVER_SOFTWARE'] : '' );
$server_parts[1] = isset( $server_parts[1] )? $server_parts[1] : '';
return 'lighttpd' == $server_parts[0] && -1 == version_compare( $server_parts[1], '1.5.0' );
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Docs for page functions.php
is_lighttpd_before_150 (line 2836). Is the server running earlier than 1.5.0 version of lighttpd? return: Whether the server is running lighttpd < 1.5.0; since: 2.5.0 ...
phpdoc.wordpress.org - PHPXRef 0.7 : WordPress : Detail view of load-scripts.php
esc_attr() apply_filters() get_option() is_lighttpd_before_150() add_action() do_action_ref_array() get_bloginfo() is_admin() site_url() admin_url() home_url() ...
phpxref.ftwr.co.uk - Docs for page functions.core.php
bool is_lighttpd_before_150 (). is_serialized (line 79). Check value to find if it was serialized. If $data is not an string, then returned value will always be false.
phpdoc.ftwr.co.uk - PHPXRef 0.7 : WordPress (Trunk) : Detail view of load-styles.php
esc_attr() apply_filters() get_option() is_lighttpd_before_150() add_action() do_action_ref_array() get_bloginfo() is_admin() site_url() admin_url() wp_guess_url() ...
lab.yukei.net