PHP Classes

File: vendor/wp-cli/wp-cli/php/boot-fs.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/wp-cli/wp-cli/php/boot-fs.php   Download  
File: vendor/wp-cli/wp-cli/php/boot-fs.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 27 days ago
Size: 401 bytes
 

Contents

Class file image Download
<?php

// This file needs to parse without error in PHP < 5.3

if ( 'cli' !== PHP_SAPI ) {
    echo
"Only CLI access.\n";
    die( -
1 );
}

if (
version_compare( PHP_VERSION, '5.6.0', '<' ) ) {
   
printf( "Error: WP-CLI requires PHP %s or newer. You are running version %s.\n", '5.6.0', PHP_VERSION );
    die( -
1 );
}

define( 'WP_CLI_ROOT', dirname( __DIR__ ) );

require_once
WP_CLI_ROOT . '/php/wp-cli.php';