go1com/util_url

关于此包最新版本(dev-main)没有可用的许可信息。

用于与微服务通信的URL生成器

此包的官方仓库似乎已消失,因此该包已被冻结。

dev-main 2018-06-15 08:16 UTC

This package is auto-updated.

Last update: 2024-05-14 01:31:11 UTC


README

Build Status

提供生成指向GO1微服务的URL的唯一可信来源

用法

<?php

use go1\UtilUrl\ServiceUrlGenerator;

//Instance
$serviceUrlGenerator = new ServiceUrlGenerator();
$userServiceUrl = $serviceUrlGenerator->getInternalUrl('user');
$gatewayUrl = $serviceUrlGenerator->getPublicGatewayUrl();

//Static access
$servicesUrls = ServiceUrlGenerator::getInternalUrls(['user', 'lo', 'explore']);