Stripe Subscription Checkout Using PHP | Lon Hosford www.lonhosford.com Development Environment Setup SNIPPET #1: // Send startup errors to stdout(1) vs stderr (0) ini_set('display_startup_errors', 1); // Send runtime errors to stdout(1) vs stderr (0) ini_set("display_errors", 1); // PHP levels of error reporting error_reporting(E_ALL); SNIPPET #2: // File path to the Strip library $path_to_stripe_lib = dirname(__FILE__) . '../../../stripe-php-2.3.0/'; include_once($path_to_stripe_lib . 'init.php'); SNIPPET #3: . \Stripe\Stripe::VERSION