A container object which may or may not contain a non-null value. If a value is present,
isPresent()will returntrueandget()will return the value.Additional methods that depend on the presence or absence of a contained value are provided, such as
orElse()(return a default value if value not present) andifPresent()(execute a block of code if the value is present).This is a value-based class; use of identity-sensitive operations (including reference equality (==), identity hash code, or synchronization) on instances of Optional may have unpredictable results and should be avoided.
It is an easy way to make sure that everyone has to check if they have (not) received a null.
use PetrKnap\Optional\Optional;
/** @var Optional<string> $stringOption */
$stringOption = Optional::of('data');
if ($stringOption->isPresent()) {
echo $stringOption->get();
}
Optional::ofFalsable(tmpfile())->ifPresent(function ($tmpFile): void {
fwrite($tmpFile, 'data');
fclose($tmpFile);
}, else: fn () => print('tmpfile() failed'));The library provides specialized traits to help you implement strictly typed wrappers with full static analysis support.
NonGenericOptionaltrait for fixed specific types likeboolorstring(seeOptionalStringclass)use PetrKnap\Optional\Optional; use PetrKnap\Optional\NonGenericOptional; /** @extends Optional<bool> */ final class OptionalBool extends Optional { use NonGenericOptional; protected static function isSupported(mixed $value): bool { return is_bool($value); } }
GenericOptionaltrait for generic structures likearray(seeOptionalArrayclass)AbstractOptionaltrait for extendable factory optionals (use this when you need a base class for other typed optionals, seeOptionalObjectclass)
You can register your custom typed optionals into TypedOptional helper.
Once registered, calling the base Optional class will automatically look up and return the correct specific subclass if the value matches its criteria.
use PetrKnap\Optional\TypedOptional;
use PetrKnap\Optional\Optional;
TypedOptional::register(OptionalBool::class);
printf(
"Class name of optional which holds `true` is `%s`.\n",
get_class(Optional::of(true)),
);Class name of optional which holds `true` is `OptionalBool`.
Run composer require petrknap/optional to install it.
You can support this project via donation.
The project is licensed under the terms of the LGPL-3.0-or-later.