承接 diversified-design/viaphp 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

diversified-design/viaphp

Composer 安装命令:

composer require diversified-design/viaphp

包简介

PHP 8.3+ utility library for path aliases and arbitrary path joining with cross-platform canonicalization

README 文档

README

Via is a path alias management library.

It provides a static class for setting shorthand, dot-notation aliases to paths for easy access throughout your codebase, without hardcoding them all and passing around arrays or constants.

Given your project's full root path, and a hostname/IP, Via gives you access to system root, project root and URL root paths.

e.g.:

Via::p('host.data.logs') // '//local.test/data/logs'
Via::p('local.data.logs') // '/Users/me/Projects/foo/data/logs'
Via::p('rel.data.logs') // '/data/logs'

Paths are sanitized and canonicalized by Symfony's Filesystem component (Path::class), and dot-notation is enabled by

Installation

composer require diversified-design/viaphp

Usage

Setting & Assigning

Note: Internally we use / as the project-relative root path for constructing full filesystem and host paths. This package does not provide methods for handling arbitrary relative paths. All paths returned will always be absolute, based on the project root, local root or hosted root.

Local Path

The absolute local filesystem path of the project, used for absolute filesystem paths.

Via::setLocal(path: "/User/me/Projects/foo");

In real world usage, this would be populated dynamically, based on the system. I.e.: the local system's full path will be different on local development and various deployment systems.

So you would do something like:

Via::setLocal(path: __DIR__); // if you're calling this from the project root.

You can retrieve the current local path with:

Via::getLocal(); // Returns: '/User/me/Projects/foo'
Via::l();        // Shorthand method - same result
via_local();     // Global function - same result

// With additional path parameters
Via::getLocal('config/app.php');     // Returns: '/User/me/Projects/foo/config/app.php'
Via::l('storage/logs');              // Returns: '/User/me/Projects/foo/storage/logs'
via_local('uploads/images');         // Returns: '/User/me/Projects/foo/uploads/images'

Host Domain

The domain/hostname/IP addreess, for absolute URL paths

Via::setHost(host: "foo.local.test");

Here too, you will want to set this dynamically somehow based on the context.

You can retrieve the current host with:

Via::getHost();  // Returns: 'foo.local.test'
Via::h();        // Shorthand method - same result
via_host();      // Global function - same result

// With additional path parameters
Via::getHost('api/users');           // Returns: 'foo.local.test/api/users'
Via::h('assets/css');                // Returns: 'foo.local.test/assets/css'
via_host('cdn/images');              // Returns: 'foo.local.test/cdn/images'

Set Base

Via::setBase(alias: "data", label: "data");
Via::setBase(alias: "images", label: "images");
Via::setBase(alias: "src", label: "src");

Set Bases

Set mutliple bases at once with an array (Calls self::setBase() internally)

Via::setBases(
    [
        [alias => "data", path => "data"],
        [alias => "images", path => "images"],
        [alias => "src", path => "src"]
    ]
);

Assign to Base

Assign a sub-path to a Base

Via::assignToBase(alias: "modules", path: "modules", baseAlias: "src" );

Assign to Bases

Assign multiple sub-paths to Bases with an array (Calls self::assignToBase() internally)

Via::assignToBases(
    [alias: "caches", path: "caches", baseAlias: "data"],
    [alias: "logs", path: "logs", baseAlias: "data"],
    [alias: "modules", path: "modules", baseAlias: "src"],
    [alias: "frontend_js", path: "frontend/js", baseAlias: "src"]
);

Init

Set and Assign a whole config of bases and assignments from a given array. (Calls self::setLocal(), self::setHost(), self::setBases() and self:assignToBases() internally as needed)

Via::init(
    [
        "Local" => "/User/me/Projects/foo",
        "absoluteDomain" => "foo.local.test",
        "bases" => [
            [alias => "data", path => "data"],
            [alias => "images", path => "images"],
            [alias => "src", path => "src"]
        ],
        "assignments": [
            [alias: "caches", path: "caches", baseAlias: "data"],
            [alias: "logs", path: "logs", baseAlias: "data"],
            [alias: "modules", path: "modules", baseAlias: "src"],
            [alias: "frontend_js", path: "frontend/js", baseAlias: "src"]
        ]
    ]
)

Getting

Paths are accessed using dot-notation, and assembled at retrieval time (lazy loaded).

The accessing method is Via::get() but a Via::p() (read: "Via path") forwarder is provided for convenient shorthand notation. ( I use Via::p() myself. )

For even more convenience in templates and view files, a global via() function is also available:

Via::get('rel.data.logs');  // (string) '/data/logs'
Via::p('rel.data.logs');    // (string) '/data/logs' - same as above
via('rel.data.logs');       // (string) '/data/logs' - global function

Via::p('local.data.logs');  // (string) '/User/me/Projects/foo/data/logs'
Via::p('host.data.logs');   // (string) '://foo.local.test/data/logs'

Via::p('rel.src');          // (string) '/src'
Via::p('local.src');        // (string) '/User/me/Projects/foo/src'
Via::p('host.src');         // (string) '://foo.local.test/src'

Via::p('rel.src.frontend_js');   // (string) '/src/frontend/js'
Via::p('local.src.frontend_js'); // (string) '/User/me/Projects/foo/src/frontend/js'
Via::p('host.src.frontend_js');  // (string) '://foo.local.test/src/frontend/js'

Dynamic Path Appending

Both get(), p(), and the global via() function accept an optional second parameter to append additional path segments:

Via::p('rel.data', 'config/settings.json');        // '/data/config/settings.json'
Via::p('local.src', 'utils/helpers.php');          // '/User/me/Projects/foo/src/utils/helpers.php'
via('host.images', 'gallery/photo.jpg');           // '://foo.local.test/images/gallery/photo.jpg'

Global Functions

For ultimate convenience, especially in templates, four global functions are available:

via('rel.data.logs');                    // Path retrieval
via_local();                             // Get local filesystem root
via_host();                              // Get host domain
via_join('/base/path', 'subdir');        // Arbitrary path joining

These global functions are automatically available when you include the ViaPHP package via Composer's autoloader.

Path Joining Utility

ViaPHP includes a powerful path joining utility that works independently of the configured path system:

Via::j() Method

The Via::j() method provides arbitrary path joining with cross-platform canonicalization:

// Basic path joining
Via::j('/base/path', 'subdir/file.txt');  // → '/base/path/subdir/file.txt'

// Path canonicalization (cleans messy paths)
Via::j('/base/path', '../parent/file.txt');     // → '/base/parent/file.txt'
Via::j('/base/path', './current//file.txt');    // → '/base/path/current/file.txt'

// Cross-platform separator handling
Via::j('/base/path', 'subdir\\file.txt');       // → '/base/path/subdir/file.txt'

// Null and empty handling
Via::j('/base/path', null);  // → '/base/path'
Via::j('/base/path', '');    // → '/base/path'

Global Function: via_join()

For maximum template convenience, use the global via_join() function:

// Identical to Via::j() but more concise in templates
$cssPath = via_join('/public/assets', 'css/main.css');
$logFile = via_join('/var/log/app', date('Y-m-d') . '.log');

// Perfect for HTML templates
echo '<link rel="stylesheet" href="' . via_join($assetBase, 'css/main.css') . '">';

Key Features:

  • Independent Operation: Works without any Via configuration
  • Cross-Platform: Handles various path separators (/, , mixed)
  • Path Canonicalization: Cleans up messy paths with .., ./, //
  • Null Safety: Gracefully handles null and empty additional paths
  • Symfony Powered: Uses Symfony Path component for reliable canonicalization

This utility complements the configured path system by providing flexible arbitrary path joining for dynamic path construction scenarios.

Implemetation Notes

Under the hood we use

Testing

This package uses the Pest PHP testing framework.

Tests are located in ./tests

diversified-design/viaphp 适用场景与选型建议

diversified-design/viaphp 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 24 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「helper」 「utilities」 「aliases」 「paths」 「cross-platform」 「Canonicalization」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 diversified-design/viaphp 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 diversified-design/viaphp 我们能提供哪些服务?
定制开发 / 二次开发

基于 diversified-design/viaphp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 37
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-02-24