PHP?? DDD ?? ?? ??
? ????? PHP? ??? ?? ???(DDD) ?? ?? ??? ???? ?????? ???? ???? ???? ??? ???? ???? ??? ?????. ??? ???(TaxManagerInterface)? ???? ??? ???? ?? ?? ???? ???? TaxPersistUseCase ???? ???????.
? ??? DDD ??? ?????. ? ?? ??? ??? ?? ? ?? ??? ?? ??? ?? ?????, ???? ?? ? ??? ???? ?????.
TaxPersistUseCase? ??
TaxPersistUseCase ???? ?? ??? ??? ???? ??? ?????. ? ?? ??? ??? ??? ??? ?? ?? ?? ???? ???? ????.
??? ??
namespace Domain\Application\UseCase\Order; use Domain\Application\Entity\Order\Tax; use Domain\Application\Gateway\Manager\Order\TaxManagerInterface; use Domain\Application\UseCase\Order\Exception\NotFoundException; use Domain\Application\UseCase\Order\Interfaces\TaxPersistRequestInterface; use Domain\Application\UseCase\Order\Interfaces\TaxPersistResponseInterface; use Domain\Exception\BadRequestException; use Domain\Exception\FormException; use Small\CleanApplication\Contract\UseCaseInterface; use Small\Collection\Collection\StringCollection; use Small\SwooleEntityManager\EntityManager\Exception\EmptyResultException;
TaxPersistUseCase ???? ?? ???? ???? ?? ?? ?????? ??? ?????. ??? ??? ????.
TaxManagerInterface : ?? ??? ???? ?? ????????.
TaxPersistRequestInterface ? TaxPersistResponseInterface: ?? ??? ?? ? ??? ?? ?????
??: BadRequestException, FormException ? NotFoundException? ?? ??? ??? ??? ??? ???? ? ??? ???.
TaxPersistUseCase ??? ??
namespace Domain\Application\UseCase\Order; use Domain\Application\Entity\Order\Tax; use Domain\Application\Gateway\Manager\Order\TaxManagerInterface; use Domain\Application\UseCase\Order\Exception\NotFoundException; use Domain\Application\UseCase\Order\Interfaces\TaxPersistRequestInterface; use Domain\Application\UseCase\Order\Interfaces\TaxPersistResponseInterface; use Domain\Exception\BadRequestException; use Domain\Exception\FormException; use Small\CleanApplication\Contract\UseCaseInterface; use Small\Collection\Collection\StringCollection; use Small\SwooleEntityManager\EntityManager\Exception\EmptyResultException;
- ??? ? ??? ??: ???? TaxManagerInterface? ????? ???? TaxPersistUseCase? ?? ??? ???? ?? Tax ??? ???? ? ????? ?????.
- ?? ?? ??: ?? ???? $request ??? TaxPersistRequestInterface? ????? ?????. ??? ?? ??? ??? ?? ??? ????? ???? ????? ?? ??? ??? ?????.
- ?? ?? ??: ??? ??? ?? ?? ???? getTax()? ?? $request?? ?? ??? ???? TaxManagerInterface?? applicationPersist ???? ?????. ? ??? ????? ???? ??? ???? ?? try-catch ?? ?? ??????
- EmptyResultException: ?? ???? ?? ? ?? ?? ? ??? ???? NotFoundException? ???? ??? ????.
- FormException: ?? ??? ??? ???? FormException? ???? ?? ???? StringCollection? ?????.
- ?? ???? ?? ?? ??: ?? ???? TaxPersistResponseInterface? ???? ?? ??? ??? ?????. ???? getTax() ? getMessages() ???? ???? ??? ?? Tax ??? ? ?? ???? ???? ? ????.
?? ?? ?????
?????? ? ?? ??? ???? ?? ??? ???? ?? ? ??? ???? ?????.
?? ??? ?????
? ?????? ?? ? ???? ??? ?? ?? ??? ?????.
class TaxPersistUseCase implements UseCaseInterface { public function __construct( protected TaxManagerInterface $taxManager, ) {} public function execute(mixed $request): TaxPersistResponseInterface { if (!$request instanceof TaxPersistRequestInterface) { throw new BadRequestException( self::class . ' accepts only request instance of ' . TaxPersistRequestInterface::class ); } $tax = $request->getTax(); $messages = new StringCollection(); try { $this->taxManager->applicationPersist($tax); } catch (EmptyResultException $e) { throw new NotFoundException($e->getMessage()); } catch (FormException $e) { $messages = $e->getFormMessages(); } return new class($tax, $messages) implements TaxPersistResponseInterface { public function __construct( protected readonly Tax $tax, protected readonly StringCollection $messages, ) {} public function getTax(): Tax { return $this->tax; } public function getMessages(): StringCollection { return $this->messages; } }; } }
- findById() ? findByName(): ? ???? ???? ID ?? ???? ??? ??? ? ????.
- applicationPersist(): ? ???? ?? ??? ???? ?????.
TaxPersistRequest?????
? ?????? TaxPersistUseCase?? ???? ?? ??? ?????.
interface TaxManagerInterface { public function findById(int $id): Tax; public function findByName(string $name): Tax; public function applicationPersist(Tax $tax): self; }
- getTax(): ? ???? ??? ?? ???? ???? ?? ??? ?? ??? ??? ?? ???? ? ??? ???. TaxPersistResponse?????
- ?? ?????? TaxPersistUseCase? ??? ???? ??? ????? ?????.
interface TaxPersistRequestInterface extends RequestInterface { public function getTax(): Tax; }
- getTax(): ??? ?? ???? ????? ??? ??? ?? null? ?????.
- getMessages(): ?? ??? ??? ?? ?? ???? ??? StringCollection? ?????.
?? ? ?? ??
??? ???? ??? ???? DDD?? ??? ??? ???.
- BadRequestException: ?? ??? ??? ??? ??? ?? ?? ?????.
- NotFoundException: ?? ?? ?? ??? ?? ? ?? ?? ?????.
- FormException: ??? ?? ??? ???? ?? ?????? StringCollection? ?? ???? ???????.
? ??? PHP?? DDD ?? ?? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

PHP ?? ??? ?? ???? ?? ? ????? ??? ?????. 1. ?? ??? ??? ??? ??? ? ? ??? ??? ??? ?? ?? ??? ???? ???????. 2. ?? ??? ???? ???? ? ?? ????? ?? ?? ?? ??? ?????. 3. $ _get ? $ _post? ?? Hyperglobal ??? ?? ???? ?? ??? ? ??? ??? ??????? ???????. 4. ?? ?? ?? ???? ?? ?? ?? ??? ?????? ?? ??? ??? ?? ??? ???????. ??? ??? ????? ??? ??? ?? ???? ????? ? ??? ? ? ????.

PHP ?? ???? ???? ????? ?? ? ??? ???? ?? ?? ? ??? ???? ?? ??? ?????? ??? ??? ? ? ???????. 1. ??? ?? CSRF? ???? ?? ??? ??? ???? ?????? ??? ???? FINFO_FILE? ?? ?? MIME ??? ?????. 2. ??? ??? ??? ???? ??? ?? ??? ?? ? WEB ????? ??? ???? ??????. 3. PHP ?? ??? ?? ? ?? ???? NGINX/APACHE? ??? ????? ?? ???? ?????. 4. GD ?????? ??? ? ?? ???? ??? ?? ??? ?? ????.

PHP ?? ???? ? ?? ???? ??? ????. 1. // ?? #? ???? ? ?? ??? ???? // ???? ?? ????. 2. ?? /.../ ?? ?? ?? ??? ????? ?? ? ?? ??? ?? ? ? ????. 3. ?? ?? ?? / if () {} /? ?? ?? ??? ????? ??? ?? ?? ?? ??? ???? ????? ???? ??? ?? ???? ???? ??? ? ??? ??????.

Ageneratorinphpisamemory- ???? Way-Erate-Overgedatasetsetsbaluesoneatimeatimeatimeatimallatonce.1.generatorsuseTheyieldKeywordTocroadtOpvaluesondemand, RetingMemoryUsage.2

PHP ??? ???? ??? ??? ??? ????? ????. ??? ????? ?? ???? ??? "?? ? ?"??? "?"? ???????. 1. ??? ? ??? ??? DocBlock (/*/)? ?? ?? ??? ???? ??? ? ?? ???? ??????. 2. JS ??? ???? ?? ???? ??? ?? ??? ??? ?????. 3. ??? ?? ?? ?? ??? ???? ????? ????? ???? ?? ????? ???? ? ??????. 4. Todo ? Fixme? ????? ???? ? ? ??? ??? ???? ?? ?? ? ??? ???????. ??? ???? ?? ??? ??? ?? ?? ?? ???? ???? ? ????.

toinstallphpquickly, usexampponwindowsorhomebrewonmacos.1. ??, downloadandinstallxAmpp, selectComponents, startApache ? placefilesinhtdocs.2

PHP??? ???? ??? ?? ?? ????? ???? ??? ?? ??? ??? ?? ? ??? ??? ???? ?????. ???? 0?? ???? ?? ??? ???? ? ?? ???? ?? ?? ? ? ????. MB_SUBSTR? ?? ??? ??? ???????. ? : $ str = "hello"; echo $ str [0]; ?? H; ??? MB_SUBSTR ($ str, 1,1)? ?? ??? ??? ??? ??????. ?? ???????? ???? ??? ???? ?? ???? ?? ?? ???? ?????? ??? ????? ?? ??? ?? ??? ???? ???? ?? ????.

tolearnpheffectical, startBysetTupaloCalserErverEnmentUsingToolslikexamppandacodeeditor -likevscode.1) installxamppforapache, mysql, andphp.2) useacodeeditorforsyntaxsupport.3)) 3) testimplephpfile.next, withpluclucincludechlucincluclucludechluclucled
