public static function apply() { // This line attempts to set a license from several locations relative to the executable and Aspose.Words.dll. // You can also use the additional overload to load a license from a stream, this is useful for instance when the // license is stored as an embedded resource try { $license = new Java('com.aspose.words.License'); $license->setLicense("Aspose.Words.lic"); } catch (Exception $e) { // We do not ship any license with this example, visit the Aspose site to obtain either a temporary or permanent license. echo "There was an error setting the license:" . $e->getMessage(); } }